Home
last modified time | relevance | path

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

/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_graph_state.cpp380 case FXBSTR_ID('N', 'o', 'r', 'm'): in GetBlendType()
381 case FXBSTR_ID('C', 'o', 'm', 'p'): in GetBlendType()
383 case FXBSTR_ID('M', 'u', 'l', 't'): in GetBlendType()
385 case FXBSTR_ID('S', 'c', 'r', 'e'): in GetBlendType()
387 case FXBSTR_ID('O', 'v', 'e', 'r'): in GetBlendType()
389 case FXBSTR_ID('D', 'a', 'r', 'k'): in GetBlendType()
391 case FXBSTR_ID('L', 'i', 'g', 'h'): in GetBlendType()
393 case FXBSTR_ID('C', 'o', 'l', 'o'): in GetBlendType()
401 case FXBSTR_ID('H', 'a', 'r', 'd'): in GetBlendType()
403 case FXBSTR_ID('S', 'o', 'f', 't'): in GetBlendType()
[all …]
Dfpdf_page_parser.cpp287 {FXBSTR_ID('"', 0, 0, 0), &CPDF_StreamContentParser::Handle_NextLineShowText_Space},
288 {FXBSTR_ID('\'', 0, 0, 0), &CPDF_StreamContentParser::Handle_NextLineShowText},
289 {FXBSTR_ID('B', 0, 0, 0), &CPDF_StreamContentParser::Handle_FillStrokePath},
290 {FXBSTR_ID('B', '*', 0, 0), &CPDF_StreamContentParser::Handle_EOFillStrokePath},
291 {FXBSTR_ID('B', 'D', 'C', 0), &CPDF_StreamContentParser::Handle_BeginMarkedContent_Dictionary},
292 {FXBSTR_ID('B', 'I', 0, 0), &CPDF_StreamContentParser::Handle_BeginImage},
293 {FXBSTR_ID('B', 'M', 'C', 0), &CPDF_StreamContentParser::Handle_BeginMarkedContent},
294 {FXBSTR_ID('B', 'T', 0, 0), &CPDF_StreamContentParser::Handle_BeginText},
295 {FXBSTR_ID('B', 'X', 0, 0), &CPDF_StreamContentParser::Handle_BeginSectionUndefined},
296 {FXBSTR_ID('C', 'S', 0, 0), &CPDF_StreamContentParser::Handle_SetColorSpace_Stroke},
[all …]
Dfpdf_page_colors.cpp1103 if (id == FXBSTR_ID('C', 'a', 'l', 'G')) { in Load()
1105 } else if (id == FXBSTR_ID('C', 'a', 'l', 'R')) { in Load()
1107 } else if (id == FXBSTR_ID('L', 'a', 'b', 0)) { in Load()
1109 } else if (id == FXBSTR_ID('I', 'C', 'C', 'B')) { in Load()
1111 } else if (id == FXBSTR_ID('I', 'n', 'd', 'e') || id == FXBSTR_ID('I', 0, 0, 0)) { in Load()
1113 } else if (id == FXBSTR_ID('S', 'e', 'p', 'a')) { in Load()
1115 } else if (id == FXBSTR_ID('D', 'e', 'v', 'i')) { in Load()
1117 } 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/include/fxcrt/
Dfx_string.h89 #define FXBSTR_ID(c1, c2, c3, c4) ((c1 << 24) | (c2 << 16) | (c3 << 8) | (c4)) macro