Home
last modified time | relevance | path

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

/external/pdfium/core/fxge/
Dcfx_face.cpp728 CharCodeAndIndex char_code_and_index; in GetCharCodesAndIndices() local
729 char_code_and_index.char_code = static_cast<uint32_t>( in GetCharCodesAndIndices()
730 FT_Get_First_Char(GetRec(), &char_code_and_index.glyph_index)); in GetCharCodesAndIndices()
731 if (char_code_and_index.char_code > max_char) { in GetCharCodesAndIndices()
734 std::vector<CharCodeAndIndex> results = {char_code_and_index}; in GetCharCodesAndIndices()
736 char_code_and_index.char_code = static_cast<uint32_t>(FT_Get_Next_Char( in GetCharCodesAndIndices()
737 GetRec(), results.back().char_code, &char_code_and_index.glyph_index)); in GetCharCodesAndIndices()
738 if (char_code_and_index.char_code > max_char || in GetCharCodesAndIndices()
739 char_code_and_index.glyph_index == 0) { in GetCharCodesAndIndices()
742 results.push_back(char_code_and_index); in GetCharCodesAndIndices()