Lines Matching refs:mnColor

69 		mnColor = RGB_COLORDATA( nRed>>8, nGreen>>8, nBlue>>8 );  in Color()
73 mnColor = RGB_COLORDATA( 0, 0, 0 ); in Color()
89 SetRed( (sal_uInt8) VOS_BOUND( (long) COLORDATA_RED( mnColor ) + cLumInc, 0L, 255L ) ); in IncreaseLuminance()
90 SetGreen( (sal_uInt8) VOS_BOUND( (long) COLORDATA_GREEN( mnColor ) + cLumInc, 0L, 255L ) ); in IncreaseLuminance()
91 SetBlue( (sal_uInt8) VOS_BOUND( (long) COLORDATA_BLUE( mnColor ) + cLumInc, 0L, 255L ) ); in IncreaseLuminance()
98 SetRed( (sal_uInt8) VOS_BOUND( (long) COLORDATA_RED( mnColor ) - cLumDec, 0L, 255L ) ); in DecreaseLuminance()
99 SetGreen( (sal_uInt8) VOS_BOUND( (long) COLORDATA_GREEN( mnColor ) - cLumDec, 0L, 255L ) ); in DecreaseLuminance()
100 SetBlue( (sal_uInt8) VOS_BOUND( (long) COLORDATA_BLUE( mnColor ) - cLumDec, 0L, 255L ) ); in DecreaseLuminance()
112 SetRed( (sal_uInt8) VOS_BOUND( _FRound( COLORDATA_RED( mnColor ) * fM + fOff ), 0L, 255L ) ); in IncreaseContrast()
113 SetGreen( (sal_uInt8) VOS_BOUND( _FRound( COLORDATA_GREEN( mnColor ) * fM + fOff ), 0L, 255L ) ); in IncreaseContrast()
114 SetBlue( (sal_uInt8) VOS_BOUND( _FRound( COLORDATA_BLUE( mnColor ) * fM + fOff ), 0L, 255L ) ); in IncreaseContrast()
127 SetRed( (sal_uInt8) VOS_BOUND( _FRound( COLORDATA_RED( mnColor ) * fM + fOff ), 0L, 255L ) ); in DecreaseContrast()
128 SetGreen( (sal_uInt8) VOS_BOUND( _FRound( COLORDATA_GREEN( mnColor ) * fM + fOff ), 0L, 255L ) ); in DecreaseContrast()
129 SetBlue( (sal_uInt8) VOS_BOUND( _FRound( COLORDATA_BLUE( mnColor ) * fM + fOff ), 0L, 255L ) ); in DecreaseContrast()
137 SetRed( ~COLORDATA_RED( mnColor ) ); in Invert()
138 SetGreen( ~COLORDATA_GREEN( mnColor ) ); in Invert()
139 SetBlue( ~COLORDATA_BLUE( mnColor ) ); in Invert()
312 rIStm >> mnColor; in Read()
324 rOStm << mnColor; in Write()
431 rColor.mnColor = RGB_COLORDATA( nRed>>8, nGreen>>8, nBlue>>8 ); in operator >>()
471 rColor.mnColor = aColAry[nColorName]; in operator >>()
473 rColor.mnColor = COL_BLACK; in operator >>()