Searched refs:m_Face (Results 1 – 8 of 8) sorted by relevance
/external/pdfium/core/fxge/ |
D | cfx_font.cpp | 313 m_Face = LoadFileImp(pFontMgr->GetFTLibrary(), pFile, nFaceIndex, &stream); in LoadFile() 314 if (!m_Face) in LoadFile() 318 FT_Set_Pixel_Sizes(m_Face->GetRec(), 0, 64); in LoadFile() 325 m_Face = face; in SetFace() 336 m_Face.Reset(); in ~CFX_Font() 353 m_Face = CFX_GEModule::Get()->GetFontMgr()->FindSubstFont( in LoadSubst() 356 if (m_Face) { in LoadSubst() 357 m_FontData = {FXFT_Get_Face_Stream_Base(m_Face->GetRec()), in LoadSubst() 358 FXFT_Get_Face_Stream_Size(m_Face->GetRec())}; in LoadSubst() 363 if (!m_Face) in GetGlyphWidth() [all …]
|
D | scoped_font_transform.cpp | 26 : m_Face(std::move(face)) { in ScopedFontTransform() 27 FT_Set_Transform(m_Face->GetRec(), matrix, 0); in ScopedFontTransform() 31 ResetTransform(m_Face->GetRec()); in ~ScopedFontTransform()
|
D | cfx_glyphcache.h | 47 RetainPtr<CFX_Face> GetFace() { return m_Face; } in GetFace() 48 FXFT_FaceRec* GetFaceRec() { return m_Face ? m_Face->GetRec() : nullptr; } in GetFaceRec() 83 RetainPtr<CFX_Face> const m_Face; variable
|
D | cfx_font.h | 54 RetainPtr<CFX_Face> GetFace() const { return m_Face; } in GetFace() 56 return m_Face ? m_Face->GetRec() : nullptr; in GetFaceRec() 141 mutable RetainPtr<CFX_Face> m_Face; variable
|
D | scoped_font_transform.h | 21 RetainPtr<CFX_Face> m_Face;
|
D | cfx_glyphcache.cpp | 99 CFX_GlyphCache::CFX_GlyphCache(RetainPtr<CFX_Face> face) : m_Face(face) {} in CFX_GlyphCache()
|
/external/pdfium/core/fxge/android/ |
D | cfpf_skiafont.cpp | 25 m_Face(m_pFontMgr->GetFontFace(m_pFont->path(), m_pFont->face_index())), in CFPF_SkiaFont() 32 if (!m_Face) in GetFamilyName() 38 if (!m_Face) in GetPsName() 44 if (!m_Face) in GetGlyphIndex() 52 if (!m_Face) in GetGlyphWidth() 63 if (!m_Face) in GetAscent() 70 if (!m_Face) in GetDescent() 77 if (!m_Face) in GetGlyphBBox() 123 if (!m_Face) { in GetBBox() 138 if (!m_Face) in GetHeight() [all …]
|
D | cfpf_skiafont.h | 29 bool IsValid() const { return !!m_Face; } in IsValid() 44 FXFT_FaceRec* GetFaceRec() const { return m_Face->GetRec(); } in GetFaceRec() 49 RetainPtr<CFX_Face> const m_Face; variable
|