Home
last modified time | relevance | path

Searched refs:pKid (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/core/fpdfdoc/
Dcpdf_structelement.cpp71 CPDF_Object* pKid = pArray->GetDirectObjectAt(i); in LoadKids() local
72 LoadKid(PageObjNum, pKid, &m_Kids[i]); in LoadKids()
83 CPDF_StructKid* pKid) { in LoadKid() argument
84 pKid->m_Type = CPDF_StructKid::Invalid; in LoadKid()
92 pKid->m_Type = CPDF_StructKid::PageContent; in LoadKid()
93 pKid->m_ContentId = pKidObj->GetInteger(); in LoadKid()
94 pKid->m_PageObjNum = PageObjNum; in LoadKid()
111 pKid->m_Type = CPDF_StructKid::StreamContent; in LoadKid()
113 pKid->m_RefObjNum = pRef ? pRef->GetRefObjNum() : 0; in LoadKid()
114 pKid->m_PageObjNum = PageObjNum; in LoadKid()
[all …]
Dcpdf_nametree.cpp56 CPDF_Dictionary* pKid = pKids->GetDictAt(i); in GetNodeAncestorsLimits() local
57 if (!pKid) in GetNodeAncestorsLimits()
60 if (GetNodeAncestorsLimits(pKid, pFind, nLevel + 1, pLimits)) { in GetNodeAncestorsLimits()
115 CPDF_Dictionary* pKid = pKids->GetDictAt(i); in UpdateNodesAndLimitsUponDeletion() local
116 if (!pKid) in UpdateNodesAndLimitsUponDeletion()
118 if (!UpdateNodesAndLimitsUponDeletion(pKid, pFind, csName, nLevel + 1)) in UpdateNodesAndLimitsUponDeletion()
122 if ((pKid->KeyExist("Names") && pKid->GetArrayFor("Names")->IsEmpty()) || in UpdateNodesAndLimitsUponDeletion()
123 (pKid->KeyExist("Kids") && pKid->GetArrayFor("Kids")->IsEmpty())) { in UpdateNodesAndLimitsUponDeletion()
215 CPDF_Dictionary* pKid = pKids->GetDictAt(i); in SearchNameNodeByName() local
216 if (!pKid) in SearchNameNodeByName()
[all …]
Dcpdf_numbertree.cpp37 CPDF_Dictionary* pKid = pKids->GetDictAt(i); in SearchNumberNode() local
38 if (!pKid) in SearchNumberNode()
41 CPDF_Object* pFound = SearchNumberNode(pKid, num); in SearchNumberNode()
Dcpdf_interform.cpp1043 CPDF_Dictionary* pKid = pKids->GetDictAt(i); in AddTerminalField() local
1044 if (!pKid) in AddTerminalField()
1046 if (pKid->GetStringFor("Subtype") != "Widget") in AddTerminalField()
1049 AddControl(pField, pKid); in AddTerminalField()
1193 CPDF_Dictionary* pKid = pKids->GetDictAt(i); in FDF_ImportField() local
1194 if (!pKid) in FDF_ImportField()
1197 FDF_ImportField(pKid, name, bNotify, nLevel + 1); in FDF_ImportField()
Dcpdf_structelement.h57 void LoadKid(uint32_t PageObjNum, CPDF_Object* pObj, CPDF_StructKid* pKid);
/external/pdfium/core/fxcrt/xml/
Dcxml_element.cpp113 const CXML_Element* pKid = pChild->AsElement(); in CountElements() local
114 if (MatchesElement(pKid, space, tag)) in CountElements()
128 CXML_Element* pKid = pChild->AsElement(); in GetElement() local
129 if (MatchesElement(pKid, space, tag)) { in GetElement()
131 return pKid; in GetElement()
151 bool CXML_Element::MatchesElement(const CXML_Element* pKid, in MatchesElement() argument
154 return pKid && pKid->m_TagName == tag && in MatchesElement()
155 (space.IsEmpty() || pKid->m_QSpaceName == space); in MatchesElement()
Dcxml_element.h59 static bool MatchesElement(const CXML_Element* pKid,
/external/pdfium/core/fpdfapi/parser/
Dcpdf_document.cpp258 CPDF_Dictionary* pKid = pKidList->GetDictAt(i); in CountPages() local
259 if (!pKid || pdfium::ContainsKey(*visited_pages, pKid)) in CountPages()
261 if (pKid->KeyExist("Kids")) { in CountPages()
264 pKid); in CountPages()
265 count += CountPages(pKid, visited_pages); in CountPages()
432 CPDF_Dictionary* pKid = pKidList->GetDictAt(i); in TraversePDFPages() local
433 if (!pKid) { in TraversePDFPages()
438 if (pKid == pPages) { in TraversePDFPages()
442 if (!pKid->KeyExist("Kids")) { in TraversePDFPages()
443 m_PageList[iPage - (*nPagesToGo) + 1] = pKid->GetObjNum(); in TraversePDFPages()
[all …]
Dcpdf_data_avail.cpp566 CPDF_Reference* pKid = ToReference(pArray->GetObjectAt(i)); in CheckArrayPageNode() local
567 if (!pKid) in CheckArrayPageNode()
571 pNode->m_dwPageNo = pKid->GetRefObjNum(); in CheckArrayPageNode()
622 CPDF_Reference* pKid = pKids->AsReference(); in CheckUnknownPageNode() local
624 pNode->m_dwPageNo = pKid->GetRefObjNum(); in CheckUnknownPageNode()
631 CPDF_Reference* pKid = ToReference(pKidsArray->GetObjectAt(i)); in CheckUnknownPageNode() local
632 if (!pKid) in CheckUnknownPageNode()
636 pNode->m_dwPageNo = pKid->GetRefObjNum(); in CheckUnknownPageNode()