LED fading sketch explanation?

First, does the code below do anything?

it is an assignment and it gives the variable DISPLAY_TIME the value 100.
Probably it is meant as a const as it is written in capitals (typical C style)
const int DISPLAY_TIME = 100; would be better,
However the variable is nowhere used (probably intended to be in the inner loop 0..768)

Second, how does showRGB(x); tells the arduino to light the LED? Is 'x' the same as 'int colour'?

This is a function call. The processor will execute the showRGB() code and after that is doen it will execute the next statement.
The showRGB is called with the parameter x, from which the value will be assignet to the variable colour of the function showRGB().
So it is a copy of the variable.

And lastly, how does the redIntensity, greenIntensity and blueIntensity work if they have not been defined? (Or have they??)

They are calculated from the variable colour.

Advice: buy a standard C++ book to get basic understanding of the C/C++ language.
Or go through the arduino tutorial section to get the basics right