Home
last modified time | relevance | path

Searched refs:CTTFontDesc (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/fxge/
Dcttfontdesc.cpp12 CTTFontDesc::CTTFontDesc(uint8_t* pData, FXFT_Face face) in CTTFontDesc() function in CTTFontDesc
15 CTTFontDesc::CTTFontDesc(uint8_t* pData, size_t index, FXFT_Face face) in CTTFontDesc() function in CTTFontDesc
22 CTTFontDesc::~CTTFontDesc() { in ~CTTFontDesc()
36 void CTTFontDesc::SetTTCFace(size_t index, FXFT_Face face) { in SetTTCFace()
42 void CTTFontDesc::AddRef() { in AddRef()
47 CTTFontDesc::ReleaseStatus CTTFontDesc::ReleaseFace(FXFT_Face face) { in ReleaseFace()
59 FXFT_Face CTTFontDesc::SingleFace() const { in SingleFace()
64 FXFT_Face CTTFontDesc::TTCFace(size_t index) const { in TTCFace()
Dcttfontdesc.h13 class CTTFontDesc {
22 CTTFontDesc(uint8_t* pData, FXFT_Face face);
25 CTTFontDesc(uint8_t* pData, size_t index, FXFT_Face face);
27 ~CTTFontDesc();
Dcfx_fontmgr.cpp126 CTTFontDesc* pFontDesc = it->second.get(); in GetCachedFace()
149 auto pFontDesc = pdfium::MakeUnique<CTTFontDesc>(pData, face); in AddCachedFace()
150 CTTFontDesc* pResult = pFontDesc.get(); in AddCachedFace()
163 CTTFontDesc* pFontDesc = it->second.get(); in GetCachedTTCFace()
181 auto pFontDesc = pdfium::MakeUnique<CTTFontDesc>(pData, face_index, face); in AddCachedTTCFace()
209 CTTFontDesc::ReleaseStatus nRet = it->second->ReleaseFace(face); in ReleaseFace()
210 if (nRet == CTTFontDesc::kNotAppropriate) in ReleaseFace()
213 if (nRet == CTTFontDesc::kReleased) in ReleaseFace()
Dcfx_fontmgr.h17 class CTTFontDesc; variable
67 std::map<ByteString, std::unique_ptr<CTTFontDesc>> m_FaceMap;