Lines Matching refs:ARGBColor

225                 uno::Sequence<rendering::ARGBColor> aARGBColors;  in readBmp()
251 const rendering::ARGBColor& rColor=aARGBColors[x]; in readBmp()
265 const rendering::ARGBColor& rColor=aARGBColors[x]; in readBmp()
643 uno::Sequence<rendering::ARGBColor> aIntermediate( in convertColorSpace()
664 …virtual uno::Sequence< rendering::ARGBColor > SAL_CALL convertToARGB( const uno::Sequence< double … in convertToARGB()
672 uno::Sequence< rendering::ARGBColor > aRes(nLen/4); in convertToARGB()
673 rendering::ARGBColor* pOut( aRes.getArray() ); in convertToARGB()
676 *pOut++ = rendering::ARGBColor(pIn[3],pIn[0],pIn[1],pIn[2]); in convertToARGB()
681 …virtual uno::Sequence< rendering::ARGBColor > SAL_CALL convertToPARGB( const uno::Sequence< double… in convertToPARGB()
689 uno::Sequence< rendering::ARGBColor > aRes(nLen/4); in convertToPARGB()
690 rendering::ARGBColor* pOut( aRes.getArray() ); in convertToPARGB()
693 … *pOut++ = rendering::ARGBColor(pIn[3],pIn[3]*pIn[0],pIn[3]*pIn[1],pIn[3]*pIn[2]); in convertToPARGB()
715 …nce< double > SAL_CALL convertFromARGB( const uno::Sequence< rendering::ARGBColor >& rgbColor ) th… in convertFromARGB()
717 const rendering::ARGBColor* pIn( rgbColor.getConstArray() ); in convertFromARGB()
732 …ce< double > SAL_CALL convertFromPARGB( const uno::Sequence< rendering::ARGBColor >& rgbColor ) th… in convertFromPARGB()
734 const rendering::ARGBColor* pIn( rgbColor.getConstArray() ); in convertFromPARGB()
804 uno::Sequence<rendering::ARGBColor> aSeq(1); in colorToDoubleSequence()
805 aSeq[0] = rendering::ARGBColor( in colorToDoubleSequence()
818 const rendering::ARGBColor& rARGBColor( in doubleSequenceToColor()