Searched refs:nRgb (Results 1 – 3 of 3) sorted by relevance
/aoo41x/main/oox/source/drawingml/ |
H A D | color.cxx | 163 …ine void lclRgbToRgbComponents( sal_Int32& ornR, sal_Int32& ornG, sal_Int32& ornB, sal_Int32 nRgb ) in lclRgbToRgbComponents() argument 165 ornR = (nRgb >> 16) & 0xFF; in lclRgbToRgbComponents() 166 ornG = (nRgb >> 8) & 0xFF; in lclRgbToRgbComponents() 167 ornB = nRgb & 0xFF; in lclRgbToRgbComponents() 249 void Color::setSrgbClr( sal_Int32 nRgb ) in setSrgbClr() argument 251 OSL_ENSURE( (0 <= nRgb) && (nRgb <= 0xFFFFFF), "Color::setSrgbClr - invalid RGB value" ); in setSrgbClr() 253 lclRgbToRgbComponents( mnC1, mnC2, mnC3, nRgb ); in setSrgbClr() 523 void Color::setResolvedRgb( sal_Int32 nRgb ) const in setResolvedRgb() 525 meMode = (nRgb < 0) ? COLOR_UNUSED : COLOR_RGB; in setResolvedRgb() 526 lclRgbToRgbComponents( mnC1, mnC2, mnC3, nRgb ); in setResolvedRgb()
|
/aoo41x/main/oox/inc/oox/drawingml/ |
H A D | color.hxx | 55 void setSrgbClr( sal_Int32 nRgb ); 98 void setResolvedRgb( sal_Int32 nRgb ) const;
|
/aoo41x/main/oox/source/xls/ |
H A D | stylesbuffer.cxx | 519 sal_Int32 nRgb = lclReadRgbColor( rStrm ); in importPaletteColor() local 520 appendColor( nRgb & 0xFFFFFF ); in importPaletteColor() 533 sal_Int32 nRgb = lclReadRgbColor( rStrm ); in importPalette() local 534 appendColor( nRgb & 0xFFFFFF ); in importPalette()
|
Completed in 35 milliseconds