Searched defs:pFontDesc (Results 1 - 5 of 5) sorted by relevance

/external/pdfium/core/src/fpdfapi/fpdf_edit/
H A Dfpdf_edit_doc.cpp409 CPDF_Dictionary* pFontDesc = FX_NEW CPDF_Dictionary; local
410 pFontDesc->SetAtName("Type", "FontDescriptor");
411 pFontDesc->SetAtName("FontName", basefont);
412 pFontDesc->SetAtInteger("Flags", flags);
417 pFontDesc->SetAt("FontBBox", pBBox);
418 pFontDesc->SetAtInteger("ItalicAngle", italicangle);
419 pFontDesc->SetAtInteger("Ascent", ascend);
420 pFontDesc->SetAtInteger("Descent", descend);
421 pFontDesc->SetAtInteger("CapHeight", capheight);
422 pFontDesc
807 CPDF_Dictionary* pFontDesc = FX_NEW CPDF_Dictionary; local
1018 CPDF_Dictionary* pFontDesc = FX_NEW CPDF_Dictionary; local
[all...]
/external/pdfium/core/src/fxge/android/
H A Dfpf_skiafontmgr.cpp467 CFPF_SkiaPathFont *pFontDesc = FX_NEW CFPF_SkiaPathFont; local
468 if (!pFontDesc) {
471 pFontDesc->SetPath(file.GetCStr());
472 ReportFace(face, pFontDesc);
473 m_FontFaces.Add(pFontDesc);
524 void CFPF_SkiaFontMgr::ReportFace(FXFT_Face face, CFPF_SkiaFontDescriptor *pFontDesc) argument
526 if (!face || !pFontDesc) {
529 pFontDesc->SetFamily(FXFT_Get_Face_Family_Name(face));
531 pFontDesc->m_dwStyle |= FXFONT_BOLD;
534 pFontDesc
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_font/
H A Dfpdf_font.cpp236 void CPDF_Font::LoadFontDescriptor(CPDF_Dictionary* pFontDesc) argument
238 m_Flags = pFontDesc->GetInteger(FX_BSTRC("Flags"), PDFFONT_NONSYMBOLIC);
241 if (pFontDesc->KeyExist(FX_BSTRC("ItalicAngle"))) {
242 ItalicAngle = pFontDesc->GetInteger(FX_BSTRC("ItalicAngle"));
250 if (pFontDesc->KeyExist(FX_BSTRC("StemV"))) {
251 m_StemV = pFontDesc->GetInteger(FX_BSTRC("StemV"));
255 if (pFontDesc->KeyExist(FX_BSTRC("Ascent"))) {
256 m_Ascent = pFontDesc->GetInteger(FX_BSTRC("Ascent"));
260 if (pFontDesc->KeyExist(FX_BSTRC("Descent"))) {
261 m_Descent = pFontDesc
440 CPDF_Dictionary* pFontDesc = pFontDict->GetDict(FX_BSTRC("FontDescriptor")); local
943 CPDF_Dictionary* pFontDesc = m_pFontDict->GetDict(FX_BSTRC("FontDescriptor")); local
[all...]
H A Dfpdf_font_cid.cpp1017 CPDF_Dictionary* pFontDesc = pCIDFontDict->GetDict(FX_BSTRC("FontDescriptor")); local
1018 if (pFontDesc) {
1019 LoadFontDescriptor(pFontDesc);
1516 CPDF_Dictionary* pFontDesc = m_pFontDict->GetDict(FX_BSTRC("FontDescriptor")); local
1517 if (pFontDesc) {
1518 LoadFontDescriptor(pFontDesc);
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_fontmap.cpp127 CTTFontDesc* pFontDesc = NULL; local
128 m_FaceMap.Lookup(key, (void*&)pFontDesc);
129 if(pFontDesc) {
130 pFontData = pFontDesc->m_pFontData;
131 pFontDesc->m_RefCount ++;
132 return pFontDesc->m_SingleFace.m_pFace;
139 CTTFontDesc* pFontDesc = FX_NEW CTTFontDesc; local
140 if (!pFontDesc) {
143 pFontDesc->m_Type = 1;
144 pFontDesc
322 CTTFontDesc* pFontDesc = NULL; local
340 CTTFontDesc* pFontDesc = FX_NEW CTTFontDesc; local
[all...]

Completed in 179 milliseconds