Searched refs:wUnicode (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/xfa/fgas/font/ |
D | cfgas_gefont.cpp | 159 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 …]
|
D | cfgas_fontmgr.cpp | 157 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 …]
|
D | cfgas_gefont.h | 48 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,
|
D | cfgas_fontmgr.h | 35 wchar_t wUnicode; member 107 RetainPtr<CFGAS_GEFont> GetFontByUnicode(wchar_t wUnicode, 118 RetainPtr<CFGAS_GEFont> GetFontByUnicodeImpl(wchar_t wUnicode, 131 wchar_t wUnicode);
|
D | fgas_fontutils.h | 19 const FGAS_FONTUSB* FGAS_GetUnicodeBitField(wchar_t wUnicode);
|
/external/pdfium/core/fxge/android/ |
D | cfpf_skiafont.cpp | 43 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()
|
D | cfpf_skiafont.h | 35 int32_t GetGlyphIndex(wchar_t wUnicode);
|