Lines Matching refs:pColors

855                 const uno::Sequence<double>* pColors=&pPolyImpl->getValues().maColors[0];  in doOperation()  local
865 setColor(pCairo, lerp(pColors[nIndex], pColors[nIndex+1], fAlpha)); in doOperation()
1670 double* pColors=aRes.getArray(); in convertFromRGB() local
1673 *pColors++ = pIn->Blue; in convertFromRGB()
1674 *pColors++ = pIn->Green; in convertFromRGB()
1675 *pColors++ = pIn->Red; in convertFromRGB()
1676 *pColors++ = 1.0; in convertFromRGB()
1687 double* pColors=aRes.getArray(); in convertFromARGB() local
1690 *pColors++ = pIn->Alpha*pIn->Blue; in convertFromARGB()
1691 *pColors++ = pIn->Alpha*pIn->Green; in convertFromARGB()
1692 *pColors++ = pIn->Alpha*pIn->Red; in convertFromARGB()
1693 *pColors++ = pIn->Alpha; in convertFromARGB()
1704 double* pColors=aRes.getArray(); in convertFromPARGB() local
1707 *pColors++ = pIn->Blue; in convertFromPARGB()
1708 *pColors++ = pIn->Green; in convertFromPARGB()
1709 *pColors++ = pIn->Red; in convertFromPARGB()
1710 *pColors++ = pIn->Alpha; in convertFromPARGB()
1857 sal_Int8* pColors=aRes.getArray(); in convertIntegerFromRGB() local
1860 *pColors++ = vcl::unotools::toByteColor(pIn->Blue); in convertIntegerFromRGB()
1861 *pColors++ = vcl::unotools::toByteColor(pIn->Green); in convertIntegerFromRGB()
1862 *pColors++ = vcl::unotools::toByteColor(pIn->Red); in convertIntegerFromRGB()
1863 *pColors++ = 255; in convertIntegerFromRGB()
1875 sal_Int8* pColors=aRes.getArray(); in convertIntegerFromARGB() local
1879 *pColors++ = vcl::unotools::toByteColor(fAlpha*pIn->Blue); in convertIntegerFromARGB()
1880 *pColors++ = vcl::unotools::toByteColor(fAlpha*pIn->Green); in convertIntegerFromARGB()
1881 *pColors++ = vcl::unotools::toByteColor(fAlpha*pIn->Red); in convertIntegerFromARGB()
1882 *pColors++ = vcl::unotools::toByteColor(fAlpha); in convertIntegerFromARGB()
1893 sal_Int8* pColors=aRes.getArray(); in convertIntegerFromPARGB() local
1896 *pColors++ = vcl::unotools::toByteColor(pIn->Blue); in convertIntegerFromPARGB()
1897 *pColors++ = vcl::unotools::toByteColor(pIn->Green); in convertIntegerFromPARGB()
1898 *pColors++ = vcl::unotools::toByteColor(pIn->Red); in convertIntegerFromPARGB()
1899 *pColors++ = vcl::unotools::toByteColor(pIn->Alpha); in convertIntegerFromPARGB()