Home
last modified time | relevance | path

Searched refs:FXBSTR_ID (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_graph_state.cpp382 case FXBSTR_ID('N', 'o', 'r', 'm'): in GetBlendType()
383 case FXBSTR_ID('C', 'o', 'm', 'p'): in GetBlendType()
385 case FXBSTR_ID('M', 'u', 'l', 't'): in GetBlendType()
387 case FXBSTR_ID('S', 'c', 'r', 'e'): in GetBlendType()
389 case FXBSTR_ID('O', 'v', 'e', 'r'): in GetBlendType()
391 case FXBSTR_ID('D', 'a', 'r', 'k'): in GetBlendType()
393 case FXBSTR_ID('L', 'i', 'g', 'h'): in GetBlendType()
395 case FXBSTR_ID('C', 'o', 'l', 'o'): in GetBlendType()
403 case FXBSTR_ID('H', 'a', 'r', 'd'): in GetBlendType()
405 case FXBSTR_ID('S', 'o', 'f', 't'): in GetBlendType()
[all …]
Dfpdf_page_parser.cpp250 {FXBSTR_ID('"', 0, 0, 0), &CPDF_StreamContentParser::Handle_NextLineShowText_Space},
251 {FXBSTR_ID('\'', 0, 0, 0), &CPDF_StreamContentParser::Handle_NextLineShowText},
252 {FXBSTR_ID('B', 0, 0, 0), &CPDF_StreamContentParser::Handle_FillStrokePath},
253 {FXBSTR_ID('B', '*', 0, 0), &CPDF_StreamContentParser::Handle_EOFillStrokePath},
254 {FXBSTR_ID('B', 'D', 'C', 0), &CPDF_StreamContentParser::Handle_BeginMarkedContent_Dictionary},
255 {FXBSTR_ID('B', 'I', 0, 0), &CPDF_StreamContentParser::Handle_BeginImage},
256 {FXBSTR_ID('B', 'M', 'C', 0), &CPDF_StreamContentParser::Handle_BeginMarkedContent},
257 {FXBSTR_ID('B', 'T', 0, 0), &CPDF_StreamContentParser::Handle_BeginText},
258 {FXBSTR_ID('B', 'X', 0, 0), &CPDF_StreamContentParser::Handle_BeginSectionUndefined},
259 {FXBSTR_ID('C', 'S', 0, 0), &CPDF_StreamContentParser::Handle_SetColorSpace_Stroke},
[all …]
Dfpdf_page_colors.cpp1147 if (id == FXBSTR_ID('C', 'a', 'l', 'G')) { in Load()
1149 } else if (id == FXBSTR_ID('C', 'a', 'l', 'R')) { in Load()
1151 } else if (id == FXBSTR_ID('L', 'a', 'b', 0)) { in Load()
1153 } else if (id == FXBSTR_ID('I', 'C', 'C', 'B')) { in Load()
1155 } else if (id == FXBSTR_ID('I', 'n', 'd', 'e') || id == FXBSTR_ID('I', 0, 0, 0)) { in Load()
1157 } else if (id == FXBSTR_ID('S', 'e', 'p', 'a')) { in Load()
1159 } else if (id == FXBSTR_ID('D', 'e', 'v', 'i')) { in Load()
1161 } else if (id == FXBSTR_ID('P', 'a', 't', 't')) { in Load()
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_filters.cpp73 case FXBSTR_ID('F', 'l', 'a', 't'): in FPDF_CreateFilter()
74 case FXBSTR_ID('F', 'l', 0, 0): in FPDF_CreateFilter()
75 case FXBSTR_ID('L', 'Z', 'W', 'D'): in FPDF_CreateFilter()
76 case FXBSTR_ID('L', 'Z', 'W', 0): { in FPDF_CreateFilter()
78 if (id == FXBSTR_ID('L', 'Z', 'W', 'D') || id == FXBSTR_ID('L', 'Z', 'W', 0)) { in FPDF_CreateFilter()
91 case FXBSTR_ID('A', 'S', 'C', 'I'): in FPDF_CreateFilter()
96 case FXBSTR_ID('A', 'H', 'x', 0): in FPDF_CreateFilter()
98 case FXBSTR_ID('A', '8', '5', 0): in FPDF_CreateFilter()
100 case FXBSTR_ID('R', 'u', 'n', 'L'): in FPDF_CreateFilter()
102 case FXBSTR_ID('C', 'C', 'I', 'T'): { in FPDF_CreateFilter()
[all …]
/external/pdfium/core/src/fxcrt/
Dfx_basic_bstring_unittest.cpp401 EXPECT_EQ(FXBSTR_ID('a', 'b', 0, 0), short_string.GetID()); in TEST()
402 EXPECT_EQ(FXBSTR_ID('b', 0, 0, 0), short_string.GetID(1)); in TEST()
408 EXPECT_EQ(FXBSTR_ID('a', 'b', 'c', 'd'), longer_string.GetID()); in TEST()
409 EXPECT_EQ(FXBSTR_ID('b', 'c', 'd', 'e'), longer_string.GetID(1)); in TEST()
410 EXPECT_EQ(FXBSTR_ID('c', 'd', 'e', 'f'), longer_string.GetID(2)); in TEST()
411 EXPECT_EQ(FXBSTR_ID('d', 'e', 'f', 0), longer_string.GetID(3)); in TEST()
412 EXPECT_EQ(FXBSTR_ID('e', 'f', 0 , 0), longer_string.GetID(4)); in TEST()
413 EXPECT_EQ(FXBSTR_ID('f', 0 , 0, 0), longer_string.GetID(5)); in TEST()
/external/pdfium/core/include/fxcrt/
Dfx_string.h172 #define FXBSTR_ID(c1, c2, c3, c4) ((c1 << 24) | (c2 << 16) | (c3 << 8) | (c4)) macro