Home
last modified time | relevance | path

Searched refs:FXSYS_RGB (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/core/fpdfdoc/
Dcpdf_bookmark.cpp27 return FXSYS_RGB(0, 0, 0); in GetColorRef()
31 return FXSYS_RGB(0, 0, 0); in GetColorRef()
36 return FXSYS_RGB(r, g, b); in GetColorRef()
/external/pdfium/core/fpdfapi/page/
Dcpdf_colorstate.cpp101 pData->m_FillRGB = ret ? FXSYS_RGB(R, G, B) : 0xFFFFFFFF; in SetFillPattern()
120 pData->m_StrokeColor.GetRGB(&R, &G, &B) ? FXSYS_RGB(R, G, B) : 0xFFFFFFFF; in SetStrokePattern()
140 rgb = color.GetRGB(&R, &G, &B) ? FXSYS_RGB(R, G, B) : 0xFFFFFFFF; in SetColor()
/external/pdfium/fpdfsdk/
Dcpdfsdk_baannot.cpp273 color = FXSYS_RGB((int)g, (int)g, (int)g); in GetColor()
281 color = FXSYS_RGB((int)r, (int)g, (int)b); in GetColor()
294 color = FXSYS_RGB((int)(r * 255), (int)(g * 255), (int)(b * 255)); in GetColor()
Dcpdfsdk_interform.cpp724 FXSYS_RGB(255, 255, 255)); in RemoveAllHighLights()
746 return FXSYS_RGB(255, 255, 255); in GetHighlightColor()
/external/pdfium/core/fpdfapi/render/
Dcpdf_transferfunc.cpp18 return FXSYS_RGB(m_Samples[FXSYS_GetRValue(rgb)], in TranslateColor()
/external/pdfium/core/fxge/dib/
Dfx_dib_main.cpp84 FXSYS_RGB(FXARGB_R(argb), FXARGB_G(argb), FXARGB_B(argb))}; in ArgbToColorRef()
/external/pdfium/core/fxge/
Dfx_dib.h73 #define FXSYS_RGB(r, g, b) ((r) | ((g) << 8) | ((b) << 16)) macro