Home
last modified time | relevance | path

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

/external/pdfium/xfa/fgas/font/
Dcfgas_gefont.cpp159 bool CFGAS_GEFont::GetCharWidth(wchar_t wUnicode, int32_t* pWidth) { in GetCharWidth() argument
160 auto it = m_CharWidthMap.find(wUnicode); in GetCharWidth()
170 std::tie(iGlyph, pFont) = GetGlyphIndexAndFont(wUnicode, true); in GetCharWidth()
176 } else if (pFont->GetCharWidth(wUnicode, pWidth)) { in GetCharWidth()
183 m_CharWidthMap[wUnicode] = *pWidth; in GetCharWidth()
187 bool CFGAS_GEFont::GetCharBBox(wchar_t wUnicode, FX_RECT* bbox) { in GetCharBBox() argument
188 auto it = m_BBoxMap.find(wUnicode); in GetCharBBox()
196 std::tie(iGlyph, pFont) = GetGlyphIndexAndFont(wUnicode, true); in GetCharBBox()
201 return pFont->GetCharBBox(wUnicode, bbox); in GetCharBBox()
207 m_BBoxMap[wUnicode] = rtBBox; in GetCharBBox()
[all …]
Dcfgas_fontmgr.cpp157 wchar_t wUnicode) { in EnumGdiFonts() argument
184 wchar_t wUnicode, in GetFontByUnicodeImpl() argument
191 wCodePage, wBitField, wUnicode); in GetFontByUnicodeImpl()
194 FindFont(nullptr, dwFontStyles, false, wCodePage, wBitField, wUnicode); in GetFontByUnicodeImpl()
207 if (!VerifyUnicode(pFont, wUnicode)) { in GetFontByUnicodeImpl()
208 m_FailedUnicodesSet.insert(wUnicode); in GetFontByUnicodeImpl()
221 wchar_t wUnicode) { in FindFont() argument
225 params.wUnicode = wUnicode; in FindFont()
242 EnumGdiFonts(pszFontFamily, wUnicode); in FindFont()
653 wchar_t wUnicode, in GetFontByUnicodeImpl() argument
[all …]
Dcfgas_gefont.h48 bool GetCharWidth(wchar_t wUnicode, int32_t* pWidth);
49 int32_t GetGlyphIndex(wchar_t wUnicode);
53 bool GetCharBBox(wchar_t wUnicode, FX_RECT* bbox);
77 wchar_t wUnicode,
Dcfgas_fontmgr.h35 wchar_t wUnicode; member
107 RetainPtr<CFGAS_GEFont> GetFontByUnicode(wchar_t wUnicode,
118 RetainPtr<CFGAS_GEFont> GetFontByUnicodeImpl(wchar_t wUnicode,
131 wchar_t wUnicode);
Dfgas_fontutils.h19 const FGAS_FONTUSB* FGAS_GetUnicodeBitField(wchar_t wUnicode);
/external/pdfium/core/fxge/android/
Dcfpf_skiafont.cpp43 int32_t CFPF_SkiaFont::GetGlyphIndex(wchar_t wUnicode) { in GetGlyphIndex() argument
45 return wUnicode; in GetGlyphIndex()
48 return FT_Get_Char_Index(GetFaceRec(), wUnicode); in GetGlyphIndex()
Dcfpf_skiafont.h35 int32_t GetGlyphIndex(wchar_t wUnicode);