HomeSort by relevance Sort by last modified time
    Searched refs:pKid (Results 1 - 9 of 9) sorted by null

  /external/pdfium/core/fpdfdoc/
cpdf_structelement.cpp 71 CPDF_Object* pKid = pArray->GetDirectObjectAt(i);
72 LoadKid(PageObjNum, pKid, &m_Kids[i]);
83 CPDF_StructKid* pKid) {
84 pKid->m_Type = CPDF_StructKid::Invalid;
92 pKid->m_Type = CPDF_StructKid::PageContent;
93 pKid->m_ContentId = pKidObj->GetInteger();
94 pKid->m_PageObjNum = PageObjNum;
111 pKid->m_Type = CPDF_StructKid::StreamContent;
113 pKid->m_RefObjNum = pRef ? pRef->GetRefObjNum() : 0;
114 pKid->m_PageObjNum = PageObjNum
    [all...]
cpdf_numbertree.cpp 37 CPDF_Dictionary* pKid = pKids->GetDictAt(i);
38 if (!pKid)
41 CPDF_Object* pFound = SearchNumberNode(pKid, num);
cpdf_nametree.cpp 56 CPDF_Dictionary* pKid = pKids->GetDictAt(i);
57 if (!pKid)
60 if (GetNodeAncestorsLimits(pKid, pFind, nLevel + 1, pLimits)) {
115 CPDF_Dictionary* pKid = pKids->GetDictAt(i);
116 if (!pKid)
118 if (!UpdateNodesAndLimitsUponDeletion(pKid, pFind, csName, nLevel + 1))
122 if ((pKid->KeyExist("Names") && pKid->GetArrayFor("Names")->IsEmpty()) ||
123 (pKid->KeyExist("Kids") && pKid->GetArrayFor("Kids")->IsEmpty()))
    [all...]
cpdf_structelement.h 57 void LoadKid(uint32_t PageObjNum, CPDF_Object* pObj, CPDF_StructKid* pKid);
cpdf_interform.cpp 1043 CPDF_Dictionary* pKid = pKids->GetDictAt(i);
1044 if (!pKid)
1046 if (pKid->GetStringFor("Subtype") != "Widget")
1049 AddControl(pField, pKid);
    [all...]
  /external/pdfium/core/fxcrt/xml/
cxml_element.cpp 113 const CXML_Element* pKid = pChild->AsElement();
114 if (MatchesElement(pKid, space, tag))
128 CXML_Element* pKid = pChild->AsElement();
129 if (MatchesElement(pKid, space, tag)) {
131 return pKid;
151 bool CXML_Element::MatchesElement(const CXML_Element* pKid,
154 return pKid && pKid->m_TagName == tag &&
155 (space.IsEmpty() || pKid->m_QSpaceName == space);
cxml_element.h 59 static bool MatchesElement(const CXML_Element* pKid,
  /external/pdfium/core/fpdfapi/parser/
cpdf_document.cpp 258 CPDF_Dictionary* pKid = pKidList->GetDictAt(i);
259 if (!pKid || pdfium::ContainsKey(*visited_pages, pKid))
261 if (pKid->KeyExist("Kids")) {
264 pKid);
265 count += CountPages(pKid, visited_pages);
432 CPDF_Dictionary* pKid = pKidList->GetDictAt(i);
433 if (!pKid) {
438 if (pKid == pPages) {
442 if (!pKid->KeyExist("Kids"))
    [all...]
cpdf_data_avail.cpp 566 CPDF_Reference* pKid = ToReference(pArray->GetObjectAt(i));
567 if (!pKid)
571 pNode->m_dwPageNo = pKid->GetRefObjNum();
622 CPDF_Reference* pKid = pKids->AsReference();
624 pNode->m_dwPageNo = pKid->GetRefObjNum();
631 CPDF_Reference* pKid = ToReference(pKidsArray->GetObjectAt(i));
632 if (!pKid)
636 pNode->m_dwPageNo = pKid->GetRefObjNum();

Completed in 137 milliseconds