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 = 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
805 CPDF_Dictionary* pFontDesc = new CPDF_Dictionary; local
1016 CPDF_Dictionary* pFontDesc = new CPDF_Dictionary; local
[all...]
/external/pdfium/core/src/fxge/android/
H A Dfpf_skiafontmgr.cpp463 CFPF_SkiaPathFont *pFontDesc = new CFPF_SkiaPathFont; local
464 pFontDesc->SetPath(file.GetCStr());
465 ReportFace(face, pFontDesc);
466 m_FontFaces.Add(pFontDesc);
517 void CFPF_SkiaFontMgr::ReportFace(FXFT_Face face, CFPF_SkiaFontDescriptor *pFontDesc) argument
519 if (!face || !pFontDesc) {
522 pFontDesc->SetFamily(FXFT_Get_Face_Family_Name(face));
524 pFontDesc->m_dwStyle |= FXFONT_BOLD;
527 pFontDesc->m_dwStyle |= FXFONT_ITALIC;
530 pFontDesc
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_font/
H A Dfpdf_font.cpp235 void CPDF_Font::LoadFontDescriptor(CPDF_Dictionary* pFontDesc) argument
237 m_Flags = pFontDesc->GetInteger(FX_BSTRC("Flags"), PDFFONT_NONSYMBOLIC);
240 if (pFontDesc->KeyExist(FX_BSTRC("ItalicAngle"))) {
241 ItalicAngle = pFontDesc->GetInteger(FX_BSTRC("ItalicAngle"));
249 if (pFontDesc->KeyExist(FX_BSTRC("StemV"))) {
250 m_StemV = pFontDesc->GetInteger(FX_BSTRC("StemV"));
254 if (pFontDesc->KeyExist(FX_BSTRC("Ascent"))) {
255 m_Ascent = pFontDesc->GetInteger(FX_BSTRC("Ascent"));
259 if (pFontDesc->KeyExist(FX_BSTRC("Descent"))) {
260 m_Descent = pFontDesc
439 CPDF_Dictionary* pFontDesc = pFontDict->GetDict(FX_BSTRC("FontDescriptor")); local
930 CPDF_Dictionary* pFontDesc = m_pFontDict->GetDict(FX_BSTRC("FontDescriptor")); local
[all...]
H A Dfpdf_font_cid.cpp903 CPDF_Dictionary* pFontDesc = pCIDFontDict->GetDict(FX_BSTRC("FontDescriptor")); local
904 if (pFontDesc) {
905 LoadFontDescriptor(pFontDesc);
1402 CPDF_Dictionary* pFontDesc = m_pFontDict->GetDict(FX_BSTRC("FontDescriptor")); local
1403 if (pFontDesc) {
1404 LoadFontDescriptor(pFontDesc);
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_fontmap.cpp124 CTTFontDesc* pFontDesc = NULL; local
125 m_FaceMap.Lookup(key, (void*&)pFontDesc);
126 if(pFontDesc) {
127 pFontData = pFontDesc->m_pFontData;
128 pFontDesc->m_RefCount ++;
129 return pFontDesc->m_SingleFace.m_pFace;
136 CTTFontDesc* pFontDesc = new CTTFontDesc; local
137 pFontDesc->m_Type = 1;
138 pFontDesc->m_SingleFace.m_pFace = NULL;
139 pFontDesc
316 CTTFontDesc* pFontDesc = NULL; local
334 CTTFontDesc* pFontDesc = new CTTFontDesc; local
[all...]

Completed in 398 milliseconds