Lines Matching refs:iGlyphIndex
360 int32_t iGlyphIndex = m_pFontEncoding->GlyphFromCharCode(wUnicode); in GetGlyphIndex() local
361 if (iGlyphIndex > 0) { in GetGlyphIndex()
364 return iGlyphIndex; in GetGlyphIndex()
376 iGlyphIndex = in GetGlyphIndex()
378 if (iGlyphIndex != 0xFFFF) { in GetGlyphIndex()
383 return (iGlyphIndex | ((i + 1) << 24)); in GetGlyphIndex()
403 iGlyphIndex = pFont->GetGlyphIndex(wUnicode, false, nullptr, bCharCode); in GetGlyphIndex()
404 if (iGlyphIndex == 0xFFFF) in GetGlyphIndex()
409 return (iGlyphIndex | (m_SubstFonts.size() << 24)); in GetGlyphIndex()
420 CFX_RetainPtr<CFGAS_GEFont> CFGAS_GEFont::GetSubstFont(int32_t iGlyphIndex) { in GetSubstFont() argument
421 iGlyphIndex = static_cast<uint32_t>(iGlyphIndex) >> 24; in GetSubstFont()
422 if (iGlyphIndex == 0) in GetSubstFont()
424 return m_SubstFonts[iGlyphIndex - 1]; in GetSubstFont()