Lines Matching refs:iGlyphIndex
226 int32_t iGlyphIndex = m_pFontEncoding->GlyphFromCharCode(wUnicode); in GetGlyphIndexAndFont() local
227 if (iGlyphIndex > 0) in GetGlyphIndexAndFont()
228 return {iGlyphIndex, pdfium::WrapRetain(this)}; in GetGlyphIndexAndFont()
241 std::tie(iGlyphIndex, font) = in GetGlyphIndexAndFont()
243 if (iGlyphIndex != 0xFFFF) { in GetGlyphIndexAndFont()
246 return {(iGlyphIndex | ((i + 1) << 24)), it->second}; in GetGlyphIndexAndFont()
267 std::tie(iGlyphIndex, font) = pFont->GetGlyphIndexAndFont(wUnicode, false); in GetGlyphIndexAndFont()
268 if (iGlyphIndex == 0xFFFF) in GetGlyphIndexAndFont()
271 return {(iGlyphIndex | (m_SubstFonts.size() << 24)), pFont}; in GetGlyphIndexAndFont()
282 RetainPtr<CFGAS_GEFont> CFGAS_GEFont::GetSubstFont(int32_t iGlyphIndex) { in GetSubstFont() argument
283 iGlyphIndex = static_cast<uint32_t>(iGlyphIndex) >> 24; in GetSubstFont()
284 if (iGlyphIndex == 0) in GetSubstFont()
286 return m_SubstFonts[iGlyphIndex - 1]; in GetSubstFont()