HomeSort by relevance Sort by last modified time
    Searched refs:pRoot (Results 1 - 25 of 34) sorted by null

1 2

  /external/pdfium/core/fpdfdoc/
cpdf_numbertree.h 15 explicit CPDF_NumberTree(CPDF_Dictionary* pRoot) : m_pRoot(pRoot) {}
cpdf_metadata.cpp 15 CPDF_Dictionary* pRoot = pDoc->GetRoot();
16 if (!pRoot)
19 CPDF_Stream* pStream = pRoot->GetStreamFor("Metadata");
cpdf_bookmarktree.cpp 17 CPDF_Dictionary* pRoot = m_pDocument->GetRoot();
18 if (!pRoot)
21 CPDF_Dictionary* pOutlines = pRoot->GetDictFor("Outlines");
cpdf_nametree.h 19 explicit CPDF_NameTree(CPDF_Dictionary* pRoot) : m_pRoot(pRoot) {}
cpdf_action.cpp 93 CPDF_Dictionary* pRoot = pDoc->GetRoot();
94 CPDF_Dictionary* pURI = pRoot->GetDictFor("URI");
cpdf_nametree.cpp 142 CPDF_Dictionary* pRoot = pDoc->GetRoot();
143 if (!pRoot)
146 CPDF_Dictionary* pNames = pRoot->GetDictFor("Names");
cpdf_annotlist.cpp 73 CPDF_Dictionary* pRoot = m_pDocument->GetRoot();
74 CPDF_Dictionary* pAcroForm = pRoot->GetDictFor("AcroForm");
  /frameworks/compile/mclinker/lib/Core/
InputTree.cpp 19 InputTree& InputTree::merge(TreeIteratorBase pRoot,
26 pMover.connect(pRoot, pTree.m_Root.node.right);
34 InputTree& InputTree::enterGroup(TreeIteratorBase pRoot,
37 pMover.connect(pRoot, node);
41 InputTree& InputTree::insert(TreeIteratorBase pRoot,
46 pMover.connect(pRoot, node);
  /frameworks/compile/mclinker/include/mcld/
InputTree.h 274 InputTree& enterGroup(TreeIteratorBase pRoot);
277 InputTree& insert(TreeIteratorBase pRoot, Input& pInput);
279 InputTree& merge(TreeIteratorBase pRoot,
283 InputTree& insert(TreeIteratorBase pRoot, const Mover& pMover, Input& pInput);
285 InputTree& enterGroup(TreeIteratorBase pRoot, const Mover& pMover);
301 mcld::InputTree& mcld::InputTree::enterGroup(mcld::TreeIteratorBase pRoot) {
304 if (pRoot.isRoot())
305 pRoot.hook<TreeIteratorBase::Leftward>(node);
307 pRoot.hook<DIRECT>(node);
313 mcld::InputTree& mcld::InputTree::insert(mcld::TreeIteratorBase pRoot,
    [all...]
  /external/pdfium/xfa/fxfa/parser/
cxfa_xml_parser.h 19 CXFA_XMLParser(CFDE_XMLNode* pRoot,
cxfa_xml_parser.cpp 9 CXFA_XMLParser::CXFA_XMLParser(CFDE_XMLNode* pRoot,
14 m_pRoot(pRoot),
17 m_pParent(pRoot),
cxfa_document.h 71 CXFA_Node* GetNodeByID(CXFA_Node* pRoot, const CFX_WideStringC& wsID);
cxfa_document.cpp 341 CXFA_Node* CXFA_Document::GetNodeByID(CXFA_Node* pRoot,
343 if (!pRoot || wsID.IsEmpty())
346 CXFA_NodeIterator sIterator(pRoot);
  /frameworks/compile/mclinker/include/mcld/LD/
GroupReader.h 39 /// readGroup - handle the input sub-tree wich its root is pRoot
40 /// @param pRoot - the root Group node of the sub-tree
41 bool readGroup(Module::input_iterator pRoot,
  /external/pdfium/fpdfsdk/
fpdf_ext.cpp 177 CPDF_Dictionary* pRoot = pDoc->GetRoot();
178 if (!pRoot)
181 CPDF_Object* pName = pRoot->GetObjectFor("PageMode");
fpdfsave.cpp 96 CPDF_Dictionary* pRoot = pPDFDocument->GetRoot();
97 if (!pRoot)
100 CPDF_Dictionary* pAcroForm = pRoot->GetDictFor("AcroForm");
fpdfview.cpp 521 CPDF_Dictionary* pRoot = pdfDoc->GetRoot();
522 if (!pRoot)
525 CPDF_Dictionary* pAcroForm = pRoot->GetDictFor("AcroForm");
533 bool bDynamicXFA = pRoot->GetBooleanFor("NeedsRendering", false);
    [all...]
  /external/icu/icu4c/source/common/
uresdata.cpp 41 /* get a const char* pointer to the key with the keyOffset byte offset from pRoot */
44 (const char *)(pResData)->pRoot+(keyOffset) : \
49 (const char *)(pResData)->pRoot+(keyOffset) : \
163 pResData->pRoot=(const int32_t *)inBytes;
164 pResData->rootRes=(Resource)*pResData->pRoot;
186 const int32_t *indexes=pResData->pRoot+1;
227 pResData->p16BitUnits=(const uint16_t *)(pResData->pRoot+indexes[URES_INDEX_KEYS_TOP]);
335 const int32_t *p32= res==0 ? &gEmptyString.length : pResData->pRoot+res;
361 const int32_t *p32=pResData->pRoot+res;
423 const int32_t *p32= offset==0 ? &gEmptyString.length : pResData->pRoot+offset
    [all...]
uresdata.h 70 #define RES_GET_POINTER(pRoot, res) ((pRoot)+RES_GET_OFFSET(res))
386 const int32_t *pRoot;
  /external/pdfium/xfa/fxfa/app/
xfa_ffdoc.cpp 301 CPDF_Dictionary* pRoot = pPDFDoc->GetRoot();
302 if (!pRoot)
305 CPDF_Dictionary* pAcroForm = pRoot->GetDictFor("AcroForm");
373 CPDF_Dictionary* pRoot = m_pPDFDoc->GetRoot();
374 if (!pRoot)
377 CPDF_Dictionary* pNames = pRoot->GetDictFor("Names");
  /frameworks/compile/mclinker/lib/LD/
GroupReader.cpp 37 bool GroupReader::readGroup(Module::input_iterator pRoot,
50 Module::input_iterator input = --pRoot;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cmdtree.h 363 virtual HRESULT WINAPI FindErrorNodes(const DBCOMMANDTREE *pRoot,ULONG *pcErrorNodes,DBCOMMANDTREE ***prgErrorNodes) = 0;
374 HRESULT (WINAPI *FindErrorNodes)(ICommandTree *This,const DBCOMMANDTREE *pRoot,ULONG *pcErrorNodes,DBCOMMANDTREE ***prgErrorNodes);
387 #define ICommandTree_FindErrorNodes(This,pRoot,pcErrorNodes,prgErrorNodes) (This)->lpVtbl->FindErrorNodes(This,pRoot,pcErrorNodes,prgErrorNodes)
393 HRESULT WINAPI ICommandTree_FindErrorNodes_Proxy(ICommandTree *This,const DBCOMMANDTREE *pRoot,ULONG *pcErrorNodes,DBCOMMANDTREE ***prgErrorNodes);
418 HRESULT (WINAPI *FindErrorNodes)(IQuery *This,const DBCOMMANDTREE *pRoot,ULONG *pcErrorNodes,DBCOMMANDTREE ***prgErrorNodes);
433 #define IQuery_FindErrorNodes(This,pRoot,pcErrorNodes,prgErrorNodes) (This)->lpVtbl->FindErrorNodes(This,pRoot,pcErrorNodes,prgErrorNodes)
  /external/pdfium/core/fpdfapi/parser/
cpdf_data_avail.cpp 434 CPDF_Dictionary* pRoot = m_pDocument->GetRoot();
436 ToReference(pRoot ? pRoot->GetObjectFor("Pages") : nullptr);
    [all...]
  /external/icu/icu4c/source/tools/genrb/
genrb.cpp 384 const int32_t *pRoot = (const int32_t *)(
386 poolBundle.fIndexes = pRoot + 1;
394 poolBundle.fKeys = (const char *)(pRoot + keysBottom);
417 const UChar *p = (const UChar *)(pRoot + keysTop);
  /external/pdfium/fpdfsdk/fpdfxfa/
cpdfxfa_docenvironment.cpp 455 CPDF_Dictionary* pRoot = m_pContext->GetPDFDoc()->GetRoot();
456 if (!pRoot)
459 CPDF_Dictionary* pAcroForm = pRoot->GetDictFor("AcroForm");
757 CPDF_Dictionary* pRoot = m_pContext->GetPDFDoc()->GetRoot();
758 if (!pRoot) {
763 CPDF_Dictionary* pAcroForm = pRoot->GetDictFor("AcroForm");
    [all...]

Completed in 414 milliseconds

1 2