HomeSort by relevance Sort by last modified time
    Searched refs:pFontDesc (Results 1 - 8 of 8) sorted by null

  /external/pdfium/core/fxge/ge/
cfx_fontmgr.cpp 135 CTTFontDesc* pFontDesc = it->second;
136 pFontData = pFontDesc->m_pFontData;
137 pFontDesc->m_RefCount++;
138 return pFontDesc->m_SingleFace;
147 CTTFontDesc* pFontDesc = new CTTFontDesc;
148 pFontDesc->m_Type = 1;
149 pFontDesc->m_SingleFace = nullptr;
150 pFontDesc->m_pFontData = pData;
151 pFontDesc->m_RefCount = 1;
156 &pFontDesc->m_SingleFace)
    [all...]
  /external/pdfium/core/fpdfapi/font/
cpdf_font.cpp 163 void CPDF_Font::LoadFontDescriptor(CPDF_Dictionary* pFontDesc) {
164 m_Flags = pFontDesc->GetIntegerFor("Flags", FXFONT_NONSYMBOLIC);
167 if (pFontDesc->KeyExist("ItalicAngle")) {
168 ItalicAngle = pFontDesc->GetIntegerFor("ItalicAngle");
176 if (pFontDesc->KeyExist("StemV")) {
177 m_StemV = pFontDesc->GetIntegerFor("StemV");
181 if (pFontDesc->KeyExist("Ascent")) {
182 m_Ascent = pFontDesc->GetIntegerFor("Ascent");
186 if (pFontDesc->KeyExist("Descent")) {
187 m_Descent = pFontDesc->GetIntegerFor("Descent")
    [all...]
cpdf_simplefont.cpp 105 CPDF_Dictionary* pFontDesc = m_pFontDict->GetDictFor("FontDescriptor");
106 if (pFontDesc) {
107 LoadFontDescriptor(pFontDesc);
112 if (pFontDesc && pFontDesc->KeyExist("MissingWidth")) {
113 int MissingWidth = pFontDesc->GetIntegerFor("MissingWidth");
cpdf_type1font.cpp 83 CPDF_Dictionary* pFontDesc = m_pFontDict->GetDictFor("FontDescriptor");
84 if (pFontDesc && pFontDesc->KeyExist("Flags"))
85 m_Flags = pFontDesc->GetIntegerFor("Flags");
cpdf_cidfont.cpp 343 CPDF_Dictionary* pFontDesc = pCIDFontDict->GetDictFor("FontDescriptor");
344 if (pFontDesc)
345 LoadFontDescriptor(pFontDesc);
824 CPDF_Dictionary* pFontDesc = m_pFontDict->GetDictFor("FontDescriptor");
825 if (pFontDesc)
826 LoadFontDescriptor(pFontDesc);
  /external/pdfium/core/fxge/android/
cfpf_skiafontmgr.cpp 454 CFPF_SkiaPathFont* pFontDesc = new CFPF_SkiaPathFont;
455 pFontDesc->SetPath(file.c_str());
456 ReportFace(face, pFontDesc);
457 m_FontFaces.push_back(pFontDesc);
462 CFPF_SkiaFontDescriptor* pFontDesc) {
463 if (!face || !pFontDesc)
465 pFontDesc->SetFamily(FXFT_Get_Face_Family_Name(face));
467 pFontDesc->m_dwStyle |= FXFONT_BOLD;
469 pFontDesc->m_dwStyle |= FXFONT_ITALIC;
471 pFontDesc->m_dwStyle |= FXFONT_FIXED_PITCH
    [all...]
cfpf_skiafontmgr.h 44 void ReportFace(FXFT_Face face, CFPF_SkiaFontDescriptor* pFontDesc);
  /external/pdfium/core/fpdfapi/parser/
cpdf_document.cpp 325 auto pFontDesc =
327 pFontDesc->SetNewFor<CPDF_Name>("Type", "FontDescriptor");
328 pFontDesc->SetNewFor<CPDF_Name>("FontName", basefont);
329 pFontDesc->SetNewFor<CPDF_Number>("Flags", flags);
330 pFontDesc->SetFor("FontBBox", std::move(bbox));
331 pFontDesc->SetNewFor<CPDF_Number>("ItalicAngle", italicangle);
332 pFontDesc->SetNewFor<CPDF_Number>("Ascent", ascend);
333 pFontDesc->SetNewFor<CPDF_Number>("Descent", descend);
334 pFontDesc->SetNewFor<CPDF_Number>("StemV", stemV);
335 return pFontDesc;
    [all...]

Completed in 389 milliseconds