Home
last modified time | relevance | path

Searched refs:m_pFontFile (Results 1 – 5 of 5) sorted by relevance

/external/pdfium/core/fpdfapi/font/
Dcpdf_font.cpp54 : m_pFontFile(nullptr), in CPDF_Font()
64 if (m_pFontFile) { in ~CPDF_Font()
68 m_pFontFile->GetStream()->AsStream()); in ~CPDF_Font()
219 m_pFontFile = m_pDocument->LoadFontFile(pFontFile); in LoadFontDescriptor()
220 if (!m_pFontFile) in LoadFontDescriptor()
223 const uint8_t* pFontData = m_pFontFile->GetData(); in LoadFontDescriptor()
224 uint32_t dwFontSize = m_pFontFile->GetSize(); in LoadFontDescriptor()
227 m_pFontFile->GetStream()->AsStream()); in LoadFontDescriptor()
228 m_pFontFile = nullptr; in LoadFontDescriptor()
429 if (m_pFontFile) in IsStandardFont()
Dcpdf_simplefont.cpp47 if (!m_pFontFile && charcode != 32) { in LoadCharMetrics()
131 if (m_pFontFile) { in LoadCommon()
140 LoadPDFEncoding(pEncoding, m_BaseEncoding, &m_CharNames, !!m_pFontFile, in LoadCommon()
152 if (m_GlyphIndex[i] != 0xffff && m_pFontFile) in LoadCommon()
Dcpdf_truetypefont.cpp41 if (m_pFontFile && m_Font.GetFace()->num_charmaps > 0 && in LoadGlyphMap()
99 m_pFontFile ? FXFT_Get_Char_Index(m_Font.GetFace(), charcode) : -1; in LoadGlyphMap()
188 if (m_pFontFile || bFound) in LoadGlyphMap()
195 if (m_pFontFile) { in LoadGlyphMap()
Dcpdf_cidfont.cpp371 bool bPromptCJK = m_pFontFile && m_bType1; in Load()
393 bool bPromptCJK = !m_pFontFile && (m_pCMap->GetCoding() == CIDCODING_CID || in Load()
410 if (m_pFontFile) { in Load()
418 if (m_pFontFile) in Load()
498 if (!m_pFontFile && m_Charset == CIDSET_JAPAN1) { in GetCharBBox()
620 if (!m_pFontFile && !m_pStreamAcc) { in GlyphFromCharCode()
730 if (m_pFontFile && m_pCMap->IsDirectCharcodeToCIDTableIsEmpty()) in GlyphFromCharCode()
863 if (m_Charset != CIDSET_JAPAN1 || m_pFontFile) in GetCIDTransform()
Dcpdf_font.h69 bool IsEmbedded() const { return IsType3Font() || m_pFontFile != nullptr; } in IsEmbedded()
115 RetainPtr<CPDF_StreamAcc> m_pFontFile; variable