Home
last modified time | relevance | path

Searched refs:pRoot (Results 1 – 25 of 29) sorted by relevance

12

/external/pdfium/core/fpdfdoc/
Dcpdf_bookmarktree.cpp21 CPDF_Dictionary* pRoot = m_pDocument->GetRoot(); in GetFirstChild() local
22 if (!pRoot) in GetFirstChild()
25 CPDF_Dictionary* pOutlines = pRoot->GetDictFor("Outlines"); in GetFirstChild()
Dcpdf_numbertree.cpp50 CPDF_NumberTree::CPDF_NumberTree(const CPDF_Dictionary* pRoot) in CPDF_NumberTree() argument
51 : m_pRoot(pRoot) {} in CPDF_NumberTree()
Dcpdf_nametree.cpp299 CPDF_NameTree::CPDF_NameTree(CPDF_Dictionary* pRoot) : m_pRoot(pRoot) {} in CPDF_NameTree() argument
302 CPDF_Dictionary* pRoot = pDoc->GetRoot(); in CPDF_NameTree() local
303 if (!pRoot) in CPDF_NameTree()
306 CPDF_Dictionary* pNames = pRoot->GetDictFor("Names"); in CPDF_NameTree()
Dcpdf_numbertree.h17 explicit CPDF_NumberTree(const CPDF_Dictionary* pRoot);
Dcpdf_action.cpp102 const CPDF_Dictionary* pRoot = pDoc->GetRoot(); in GetURI() local
103 const CPDF_Dictionary* pURI = pRoot->GetDictFor("URI"); in GetURI()
Dcpdf_nametree.h22 explicit CPDF_NameTree(CPDF_Dictionary* pRoot);
Dcpdf_annotlist.cpp179 const CPDF_Dictionary* pRoot = m_pDocument->GetRoot(); in CPDF_AnnotList() local
180 const CPDF_Dictionary* pAcroForm = pRoot->GetDictFor("AcroForm"); in CPDF_AnnotList()
Dcpdf_interactiveform.cpp589 CPDF_Dictionary* pRoot = m_pDocument->GetRoot(); in CPDF_InteractiveForm() local
590 if (!pRoot) in CPDF_InteractiveForm()
593 m_pFormDict.Reset(pRoot->GetDictFor("AcroForm")); in CPDF_InteractiveForm()
/external/icu/icu4c/source/common/
Duresdata.cpp45 (const char *)(pResData)->pRoot+(keyOffset) : \
50 (const char *)(pResData)->pRoot+(keyOffset) : \
164 pResData->pRoot=(const int32_t *)inBytes; in res_init()
165 pResData->rootRes=(Resource)*pResData->pRoot; in res_init()
187 const int32_t *indexes=pResData->pRoot+1; in res_init()
228 pResData->p16BitUnits=(const uint16_t *)(pResData->pRoot+indexes[URES_INDEX_KEYS_TOP]); in res_init()
336 const int32_t *p32= res==0 ? &gEmptyString.length : pResData->pRoot+res; in res_getStringNoTrace()
362 const int32_t *p32=pResData->pRoot+res; in isNoInheritanceMarker()
425 const int32_t *p32= offset==0 ? &gEmptyString.length : pResData->pRoot+offset; in res_getAlias()
444 const int32_t *p32= offset==0 ? (const int32_t*)&gEmpty32 : pResData->pRoot+offset; in res_getBinaryNoTrace()
[all …]
Duresdata.h70 #define RES_GET_POINTER(pRoot, res) ((pRoot)+RES_GET_OFFSET(res)) argument
388 const int32_t *pRoot; member
/external/pdfium/fpdfsdk/
Dfpdf_ext.cpp90 const CPDF_Dictionary* pRoot = pDoc->GetRoot(); in FPDFDoc_GetPageMode() local
91 if (!pRoot) in FPDFDoc_GetPageMode()
94 const CPDF_Object* pName = pRoot->GetObjectFor("PageMode"); in FPDFDoc_GetPageMode()
Dfpdf_attachment.cpp67 CPDF_Dictionary* pRoot = pDoc->GetRoot(); in FPDFDoc_AddAttachment() local
68 if (!pRoot) in FPDFDoc_AddAttachment()
76 CPDF_Dictionary* pNames = pRoot->GetDictFor("Names"); in FPDFDoc_AddAttachment()
79 pRoot->SetNewFor<CPDF_Reference>("Names", pDoc, pNames->GetObjNum()); in FPDFDoc_AddAttachment()
Dfpdf_save.cpp55 CPDF_Dictionary* pRoot = pPDFDocument->GetRoot(); in SaveXFADocumentData() local
56 if (!pRoot) in SaveXFADocumentData()
59 CPDF_Dictionary* pAcroForm = pRoot->GetDictFor("AcroForm"); in SaveXFADocumentData()
Dfpdf_view.cpp181 const CPDF_Dictionary* pRoot = pDoc->GetRoot(); in FPDF_GetFormType() local
182 if (!pRoot) in FPDF_GetFormType()
185 const CPDF_Dictionary* pAcroForm = pRoot->GetDictFor("AcroForm"); in FPDF_GetFormType()
193 bool bNeedsRendering = pRoot->GetBooleanFor("NeedsRendering", false); in FPDF_GetFormType()
994 const CPDF_Dictionary* pRoot = pDoc->GetRoot(); in FPDF_CountNamedDests() local
995 if (!pRoot) in FPDF_CountNamedDests()
1000 const CPDF_Dictionary* pDest = pRoot->GetDictFor("Dests"); in FPDF_CountNamedDests()
1095 const CPDF_Dictionary* pRoot = pDoc->GetRoot(); in FPDF_GetNamedDest() local
1096 if (!pRoot) in FPDF_GetNamedDest()
1104 const CPDF_Dictionary* pDest = pRoot->GetDictFor("Dests"); in FPDF_GetNamedDest()
Dcpdfsdk_formfillenvironment.cpp605 CPDF_Dictionary* pRoot = m_pCPDFDoc->GetRoot(); in ProcOpenAction() local
606 if (!pRoot) in ProcOpenAction()
609 CPDF_Object* pOpenAction = pRoot->GetDictFor("OpenAction"); in ProcOpenAction()
611 pOpenAction = pRoot->GetArrayFor("OpenAction"); in ProcOpenAction()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_nodeiteratortemplate.h17 explicit CXFA_NodeIteratorTemplate(NodeType* pRoot) in CXFA_NodeIteratorTemplate() argument
18 : m_pRoot(pRoot), m_pCurrent(pRoot) {} in CXFA_NodeIteratorTemplate()
Dcxfa_document.h82 CXFA_Node* GetNodeByID(CXFA_Node* pRoot, WideStringView wsID) const;
/external/pdfium/core/fpdfapi/parser/
Dcpdf_document.cpp204 const CPDF_Dictionary* pRoot = GetRoot(); in GetPagesDict() local
205 return pRoot ? pRoot->GetDictFor("Pages") : nullptr; in GetPagesDict()
421 CPDF_Dictionary* pRoot = GetRoot(); in InsertNewPage() local
422 CPDF_Dictionary* pPages = pRoot ? pRoot->GetDictFor("Pages") : nullptr; in InsertNewPage()
Dcpdf_data_avail.cpp277 const CPDF_Dictionary* pRoot = m_pDocument->GetRoot(); in PreparePageItem() local
279 ToReference(pRoot ? pRoot->GetObjectFor("Pages") : nullptr); in PreparePageItem()
971 CPDF_Dictionary* pRoot = m_pDocument->GetRoot(); in CheckAcroForm() local
972 if (!pRoot) in CheckAcroForm()
975 CPDF_Object* pAcroForm = pRoot->GetObjectFor("AcroForm"); in CheckAcroForm()
/external/pdfium/xfa/fxfa/
Dcxfa_ffdoc.cpp182 CPDF_Dictionary* pRoot = m_pPDFDoc->GetRoot(); in GetPDFNamedImage() local
183 if (!pRoot) in GetPDFNamedImage()
186 CPDF_Dictionary* pNames = pRoot->GetDictFor("Names"); in GetPDFNamedImage()
/external/pdfium/fpdfsdk/fpdfxfa/
Dcpdfxfa_context.cpp52 const CPDF_Dictionary* pRoot = pPDFDoc->GetRoot(); in CreateXFAMultiStream() local
53 if (!pRoot) in CreateXFAMultiStream()
56 const CPDF_Dictionary* pAcroForm = pRoot->GetDictFor("AcroForm"); in CreateXFAMultiStream()
Dcpdfxfa_docenvironment.cpp453 const CPDF_Dictionary* pRoot = m_pContext->GetPDFDoc()->GetRoot(); in ExportData() local
454 if (!pRoot) in ExportData()
457 const CPDF_Dictionary* pAcroForm = pRoot->GetDictFor("AcroForm"); in ExportData()
730 const CPDF_Dictionary* pRoot = m_pContext->GetPDFDoc()->GetRoot(); in ExportSubmitFile() local
731 if (!pRoot) { in ExportSubmitFile()
736 const CPDF_Dictionary* pAcroForm = pRoot->GetDictFor("AcroForm"); in ExportSubmitFile()
/external/icu/icu4c/source/tools/genrb/
Dgenrb.cpp401 const int32_t *pRoot = (const int32_t *)( in main() local
403 poolBundle.fIndexes = pRoot + 1; in main()
411 poolBundle.fKeys = (const char *)(pRoot + keysBottom); in main()
434 const UChar *p = (const UChar *)(pRoot + keysTop); in main()
/external/icu/icu4c/source/tools/toolutil/
Dpkgitems.cpp425 if(resData.pRoot[1+URES_INDEX_POOL_CHECKSUM]==poolIndexes[URES_INDEX_POOL_CHECKSUM]) { in ures_enumDependencies()
/external/sqlite/dist/
Dsqlite3.c23728 static void memsys3UnlinkFromList(u32 i, u32 *pRoot){ in memsys3UnlinkFromList() argument
23733 *pRoot = next; in memsys3UnlinkFromList()
23768 static void memsys3LinkIntoList(u32 i, u32 *pRoot){ in memsys3LinkIntoList() argument
23770 mem3.aPool[i].u.list.next = *pRoot; in memsys3LinkIntoList()
23772 if( *pRoot ){ in memsys3LinkIntoList()
23773 mem3.aPool[*pRoot].u.list.prev = i; in memsys3LinkIntoList()
23775 *pRoot = i; in memsys3LinkIntoList()
23896 static void memsys3Merge(u32 *pRoot){ in memsys3Merge() argument
23900 for(i=*pRoot; i>0; i=iNext){ in memsys3Merge()
23905 memsys3UnlinkFromList(i, pRoot); in memsys3Merge()
[all …]

12