OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CPVT_Color
(Results
1 - 2
of
2
) sorted by null
/external/pdfium/core/include/fpdfdoc/
fpdf_ap.h
33
struct
CPVT_Color
{
34
CPVT_Color
(int32_t type = 0,
96
const
CPVT_Color
& color,
97
const
CPVT_Color
& crLeftTop,
98
const
CPVT_Color
& crRightBottom,
102
static CFX_ByteString GenerateColorAP(const
CPVT_Color
& color,
/external/pdfium/core/src/fpdfdoc/
doc_ap.cpp
223
static
CPVT_Color
ParseColor(const CFX_ByteString& str) {
227
return
CPVT_Color
(CT_GRAY, FX_atof(syntax.GetWord()));
234
return
CPVT_Color
(CT_RGB, f1, f2, f3);
242
return
CPVT_Color
(CT_CMYK, f1, f2, f3, f4);
244
return
CPVT_Color
(CT_TRANSPARENT);
246
static
CPVT_Color
ParseColor(const CPDF_Array& array) {
247
CPVT_Color
rt;
250
rt =
CPVT_Color
(CT_GRAY, array.GetFloat(0));
253
rt =
CPVT_Color
(CT_RGB, array.GetFloat(0), array.GetFloat(1),
257
rt =
CPVT_Color
(CT_CMYK, array.GetFloat(0), array.GetFloat(1)
[
all
...]
Completed in 209 milliseconds