Home
last modified time | relevance | path

Searched refs:pRootDict (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/core/fpdfdoc/
Dcpdf_nametree_unittest.cpp45 void FillNameTreeDict(CPDF_Dictionary* pRootDict) { in FillNameTreeDict() argument
46 CPDF_Array* pKids = pRootDict->SetNewFor<CPDF_Array>("Kids"); in FillNameTreeDict()
80 auto pRootDict = pdfium::MakeRetain<CPDF_Dictionary>(); in TEST() local
81 CPDF_Array* pNames = pRootDict->SetNewFor<CPDF_Array>("Names"); in TEST()
92 CPDF_NameTree nameTree(pRootDict.Get()); in TEST()
106 auto pRootDict = pdfium::MakeRetain<CPDF_Dictionary>(); in TEST() local
107 CPDF_Array* pNames = pRootDict->SetNewFor<CPDF_Array>("Names"); in TEST()
111 CPDF_NameTree nameTree(pRootDict.Get()); in TEST()
140 auto pRootDict = pdfium::MakeRetain<CPDF_Dictionary>(); in TEST() local
141 FillNameTreeDict(pRootDict.Get()); in TEST()
[all …]
Dcba_fontmap.cpp202 const CPDF_Dictionary* pRootDict = m_pDocument->GetRoot(); in FindFontSameCharset() local
203 if (!pRootDict) in FindFontSameCharset()
206 const CPDF_Dictionary* pAcroFormDict = pRootDict->GetDictFor("AcroForm"); in FindFontSameCharset()
261 CPDF_Dictionary* pRootDict = m_pDocument->GetRoot(); in GetAnnotDefaultFont() local
262 if (pRootDict) in GetAnnotDefaultFont()
263 pAcroFormDict = pRootDict->GetDictFor("AcroForm"); in GetAnnotDefaultFont()
Dcpvt_generateap.cpp920 CPDF_Dictionary* pRootDict = pDoc->GetRoot(); in GenerateFormAP() local
921 if (!pRootDict) in GenerateFormAP()
924 CPDF_Dictionary* pFormDict = pRootDict->GetDictFor("AcroForm"); in GenerateFormAP()
/external/pdfium/fpdfsdk/
Dcpdfsdk_helpers.cpp328 const CPDF_Dictionary* pRootDict = pDoc->GetRoot(); in ReportUnsupportedFeatures() local
329 if (pRootDict) { in ReportUnsupportedFeatures()
331 if (pRootDict->KeyExist("Collection")) { in ReportUnsupportedFeatures()
335 if (pRootDict->KeyExist("Names")) { in ReportUnsupportedFeatures()
336 const CPDF_Dictionary* pNameDict = pRootDict->GetDictFor("Names"); in ReportUnsupportedFeatures()
358 const CPDF_Stream* pStream = pRootDict->GetStreamFor("Metadata"); in ReportUnsupportedFeatures()