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

  /external/pdfium/core/fxge/
cfx_fontmgr.cpp 126 CTTFontDesc* pFontDesc = it->second.get();
127 *pFontData = pFontDesc->FontData();
128 pFontDesc->AddRef();
129 return pFontDesc->SingleFace();
149 auto pFontDesc = pdfium::MakeUnique<CTTFontDesc>(pData, face);
150 CTTFontDesc* pResult = pFontDesc.get();
151 m_FaceMap[KeyNameFromFace(face_name, weight, bItalic)] = std::move(pFontDesc);
163 CTTFontDesc* pFontDesc = it->second.get();
164 *pFontData = pFontDesc->FontData();
165 int face_index = GetTTCIndex(pFontDesc->FontData(), ttc_size, font_offset)
    [all...]
  /external/pdfium/core/fpdfapi/font/
cpdf_font.cpp 167 void CPDF_Font::LoadFontDescriptor(CPDF_Dictionary* pFontDesc) {
168 m_Flags = pFontDesc->GetIntegerFor("Flags", FXFONT_NONSYMBOLIC);
171 if (pFontDesc->KeyExist("ItalicAngle")) {
172 ItalicAngle = pFontDesc->GetIntegerFor("ItalicAngle");
180 if (pFontDesc->KeyExist("StemV")) {
181 m_StemV = pFontDesc->GetIntegerFor("StemV");
185 if (pFontDesc->KeyExist("Ascent")) {
186 m_Ascent = pFontDesc->GetIntegerFor("Ascent");
190 if (pFontDesc->KeyExist("Descent")) {
191 m_Descent = pFontDesc->GetIntegerFor("Descent")
    [all...]
cpdf_simplefont.cpp 107 CPDF_Dictionary* pFontDesc = m_pFontDict->GetDictFor("FontDescriptor");
108 if (pFontDesc) {
109 LoadFontDescriptor(pFontDesc);
114 if (pFontDesc && pFontDesc->KeyExist("MissingWidth")) {
115 int MissingWidth = pFontDesc->GetIntegerFor("MissingWidth");
cpdf_type1font.cpp 80 CPDF_Dictionary* pFontDesc = m_pFontDict->GetDictFor("FontDescriptor");
81 if (pFontDesc && pFontDesc->KeyExist("Flags"))
82 m_Flags = pFontDesc->GetIntegerFor("Flags");
cpdf_cidfont.cpp 357 CPDF_Dictionary* pFontDesc = pCIDFontDict->GetDictFor("FontDescriptor");
358 if (pFontDesc)
359 LoadFontDescriptor(pFontDesc);
844 CPDF_Dictionary* pFontDesc = m_pFontDict->GetDictFor("FontDescriptor");
845 if (pFontDesc)
846 LoadFontDescriptor(pFontDesc);
  /external/pdfium/core/fxge/android/
cfpf_skiafontmgr.cpp 456 CFPF_SkiaPathFont* pFontDesc = new CFPF_SkiaPathFont;
457 pFontDesc->SetPath(file.c_str());
458 ReportFace(face, pFontDesc);
459 m_FontFaces.push_back(pFontDesc);
464 CFPF_SkiaFontDescriptor* pFontDesc) {
465 if (!face || !pFontDesc)
467 pFontDesc->SetFamily(FXFT_Get_Face_Family_Name(face));
469 pFontDesc->m_dwStyle |= FXFONT_BOLD;
471 pFontDesc->m_dwStyle |= FXFONT_ITALIC;
473 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 326 auto pFontDesc =
328 pFontDesc->SetNewFor<CPDF_Name>("Type", "FontDescriptor");
329 pFontDesc->SetNewFor<CPDF_Name>("FontName", basefont);
330 pFontDesc->SetNewFor<CPDF_Number>("Flags", flags);
331 pFontDesc->SetFor("FontBBox", std::move(bbox));
332 pFontDesc->SetNewFor<CPDF_Number>("ItalicAngle", italicangle);
333 pFontDesc->SetNewFor<CPDF_Number>("Ascent", ascend);
334 pFontDesc->SetNewFor<CPDF_Number>("Descent", descend);
335 pFontDesc->SetNewFor<CPDF_Number>("StemV", stemV);
336 return pFontDesc;
    [all...]

Completed in 320 milliseconds