Home
last modified time | relevance | path

Searched refs:PDFCharIsDelimiter (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_utility.cpp104 if (PDFCharIsDelimiter(ch)) { in ParseWord()
150 if (PDFCharIsDelimiter(ch) || PDFCharIsWhitespace(ch)) { in ParseWord()
317 PDFCharIsDelimiter(ch)) { in PDF_NameEncode()
332 PDFCharIsDelimiter(ch)) { in PDF_NameEncode()
Dfpdf_parser_parser.cpp797 if (PDFCharIsWhitespace(byte) || PDFCharIsDelimiter(byte)) { in RebuildCrossRef()
870 if (PDFCharIsWhitespace(byte) || PDFCharIsDelimiter(byte)) { in RebuildCrossRef()
974 if (PDFCharIsDelimiter(byte) || PDFCharIsWhitespace(byte)) { in RebuildCrossRef()
1846 if (PDFCharIsDelimiter(ch)) { in GetNextWordInternal()
1891 if (PDFCharIsDelimiter(ch) || PDFCharIsWhitespace(ch)) { in GetNextWordInternal()
2543 bool bCheckLeft = !PDFCharIsDelimiter(tag[0]) && !PDFCharIsWhitespace(tag[0]); in IsWholeWord()
2544 bool bCheckRight = !PDFCharIsDelimiter(tag[taglen - 1]) && in IsWholeWord()
2550 (checkKeyword && PDFCharIsDelimiter(ch))) { in IsWholeWord()
2557 (checkKeyword && PDFCharIsDelimiter(ch))) { in IsWholeWord()
3846 if (PDFCharIsDelimiter(ch)) { in GetNextToken()
[all …]
/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_parser_old.cpp488 if (PDFCharIsDelimiter(ch) && ch != '/') { in ParseNextElement()
506 if (PDFCharIsDelimiter(ch) || PDFCharIsWhitespace(ch)) { in ParseNextElement()
571 while (!PDFCharIsWhitespace(ch) && !PDFCharIsDelimiter(ch)) { in SkipPathObject()
708 if (PDFCharIsDelimiter(ch)) { in GetNextWord()
753 if (PDFCharIsDelimiter(ch) || PDFCharIsWhitespace(ch)) { in GetNextWord()
/external/pdfium/core/include/fpdfapi/
Dfpdf_parser.h53 inline bool PDFCharIsDelimiter(uint8_t c) { in PDFCharIsDelimiter() function