Home
last modified time | relevance | path

Searched refs:uni_str (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_decode.cpp435 const uint8_t* uni_str = src_data + 2; in PDF_DecodeText() local
438 FX_WORD unicode = bBE ? (uni_str[i] << 8 | uni_str[i + 1]) in PDF_DecodeText()
439 : (uni_str[i + 1] << 8 | uni_str[i]); in PDF_DecodeText()
443 FX_WORD unicode = bBE ? (uni_str[i] << 8 | uni_str[i + 1]) in PDF_DecodeText()
444 : (uni_str[i + 1] << 8 | uni_str[i]); in PDF_DecodeText()
/external/pdfium/core/src/fpdfapi/fpdf_font/
Dfpdf_font_cid.cpp1471 CFX_WideString uni_str = UnicodeFromCharCode(charcode); in GlyphFromCharCode()
1472 if (uni_str.IsEmpty()) { in GlyphFromCharCode()
1475 unicode = uni_str.GetAt(0); in GlyphFromCharCode()