Lines Matching refs:rLHS

264         RGBColor::RGBColor(const RGBColor& rLHS)  in RGBColor()  argument
266 maRGBTriple.mnRed = rLHS.getRed(); in RGBColor()
267 maRGBTriple.mnGreen = rLHS.getGreen(); in RGBColor()
268 maRGBTriple.mnBlue = rLHS.getBlue(); in RGBColor()
271 RGBColor& RGBColor::operator=( const RGBColor& rLHS ){ in operator =() argument
273 maRGBTriple.mnRed = rLHS.getRed(); in operator =()
274 maRGBTriple.mnGreen = rLHS.getGreen(); in operator =()
275 maRGBTriple.mnBlue = rLHS.getBlue(); in operator =()
279 HSLColor operator+( const HSLColor& rLHS, const HSLColor& rRHS ) in operator +() argument
281 return HSLColor( rLHS.getHue() + rRHS.getHue(), in operator +()
282 rLHS.getSaturation() + rRHS.getSaturation(), in operator +()
283 rLHS.getLuminance() + rRHS.getLuminance() ); in operator +()
286 HSLColor operator*( const HSLColor& rLHS, const HSLColor& rRHS ) in operator *() argument
288 return HSLColor( rLHS.getHue() * rRHS.getHue(), in operator *()
289 rLHS.getSaturation() * rRHS.getSaturation(), in operator *()
290 rLHS.getLuminance() * rRHS.getLuminance() ); in operator *()
437 RGBColor operator+( const RGBColor& rLHS, const RGBColor& rRHS ) in operator +() argument
439 return RGBColor( rLHS.getRed() + rRHS.getRed(), in operator +()
440 rLHS.getGreen() + rRHS.getGreen(), in operator +()
441 rLHS.getBlue() + rRHS.getBlue() ); in operator +()
444 RGBColor operator*( const RGBColor& rLHS, const RGBColor& rRHS ) in operator *() argument
446 return RGBColor( rLHS.getRed() * rRHS.getRed(), in operator *()
447 rLHS.getGreen() * rRHS.getGreen(), in operator *()
448 rLHS.getBlue() * rRHS.getBlue() ); in operator *()