Home
last modified time | relevance | path

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

/external/pdfium/core/fxge/android/
Dcfpf_skiafont.cpp24 m_Face(nullptr), in CFPF_SkiaFont()
30 if (m_Face) in ~CFPF_SkiaFont()
31 FXFT_Done_Face(m_Face); in ~CFPF_SkiaFont()
45 if (!m_Face) in GetFamilyName()
47 return ByteString(FXFT_Get_Face_Family_Name(m_Face)); in GetFamilyName()
51 if (!m_Face) in GetPsName()
53 return FXFT_Get_Postscript_Name(m_Face); in GetPsName()
57 if (!m_Face) in GetGlyphIndex()
59 if (FXFT_Select_Charmap(m_Face, FXFT_ENCODING_UNICODE)) in GetGlyphIndex()
61 return FXFT_Get_Char_Index(m_Face, wUnicode); in GetGlyphIndex()
[all …]
Dcfpf_skiafont.h48 FXFT_Face m_Face; variable
/external/pdfium/core/fxge/
Dcfx_font.cpp214 m_Face(nullptr), in CFX_Font()
229 m_Face = face; in SetFace()
238 if (m_Face) { in ~CFX_Font()
240 if (FXFT_Get_Face_External_Stream(m_Face)) { in ~CFX_Font()
241 FXFT_Clear_Face_External_Stream(m_Face); in ~CFX_Font()
254 FXFT_Done_Face(m_Face); in DeleteFace()
256 CFX_GEModule::Get()->GetFontMgr()->ReleaseFace(m_Face); in DeleteFace()
257 m_Face = nullptr; in DeleteFace()
270 m_Face = CFX_GEModule::Get()->GetFontMgr()->FindSubstFont( in LoadSubst()
273 if (m_Face) { in LoadSubst()
[all …]
Dcfx_facecache.cpp61 : m_Face(face) in CFX_FaceCache()
78 if (!m_Face) in RenderGlyph()
114 ScopedFontTransform scoped_transform(m_Face, &ft_matrix); in RenderGlyph()
115 int load_flags = (m_Face->face_flags & FT_FACE_FLAG_SFNT) in RenderGlyph()
118 int error = FXFT_Load_Glyph(m_Face, glyph_index, load_flags); in RenderGlyph()
125 error = FXFT_Load_Glyph(m_Face, glyph_index, load_flags); in RenderGlyph()
149 FXFT_Outline_Embolden(FXFT_Get_Glyph_Outline(m_Face), in RenderGlyph()
154 error = FXFT_Render_Glyph(m_Face, anti_alias); in RenderGlyph()
157 int bmwidth = FXFT_Get_Bitmap_Width(FXFT_Get_Glyph_Bitmap(m_Face)); in RenderGlyph()
158 int bmheight = FXFT_Get_Bitmap_Rows(FXFT_Get_Glyph_Bitmap(m_Face)); in RenderGlyph()
[all …]
Dfx_ge_text.cpp37 : m_Face(face) { in ScopedFontTransform()
38 FXFT_Set_Transform(m_Face, matrix, 0); in ScopedFontTransform()
42 ResetTransform(m_Face); in ~ScopedFontTransform()
Dcfx_font.h42 FXFT_Face GetFace() const { return m_Face; } in GetFace()
110 FXFT_Face m_Face; variable
Dcfx_facecache.h71 FXFT_Face const m_Face; variable
Dfx_font.h68 FT_Face m_Face;