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

  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_layout_appadapter.h 31 for (CXFA_LayoutItem* pChildItem = pLayoutItem->m_pFirstChild; pChildItem;
32 pChildItem = pChildItem->m_pNextSibling) {
34 pChildItem->AsContainerLayoutItem()) {
42 for (CXFA_LayoutItem* pChildItem = pLayoutItem->m_pNextSibling; pChildItem;
43 pChildItem = pChildItem->m_pNextSibling) {
45 pChildItem->AsContainerLayoutItem()) {
    [all...]
xfa_layout_itemlayout.cpp 131 for (CXFA_ContentLayoutItem* pChildItem =
133 pChildItem;
134 pChildItem =
135 (CXFA_ContentLayoutItem*)pChildItem->m_pNextSibling) {
137 fCurVerticalOffset + fCurTopMargin + pChildItem->m_sPos.y;
139 if (FindLayoutItemSplitPos(pChildItem, fChildOffset, fRelSplitPos,
304 for (CXFA_ContentLayoutItem* pChildItem = pChildren, * pChildNext = NULL;
305 pChildItem; pChildItem = pChildNext) {
306 pChildNext = (CXFA_ContentLayoutItem*)pChildItem->m_pNextSibling;
    [all...]
xfa_parser_imp.cpp 414 for (IFDE_XMLNode* pChildItem =
416 pChildItem;
417 pChildItem = pChildItem->GetNodeItem(IFDE_XMLNode::NextSibling)) {
419 if (!XFA_FDEExtension_MatchNodeName(pChildItem, pPacketInfo->pName,
427 pXMLConfigDOMRoot = pChildItem;
437 for (IFDE_XMLNode* pChildItem =
439 pChildItem;
440 pChildItem = pChildItem->GetNodeItem(IFDE_XMLNode::NextSibling)) {
    [all...]
xfa_layout_pagemgr_new.cpp 441 CXFA_ContainerLayoutItem* pChildItem =
443 while (pChildItem &&
444 pChildItem->m_pFormNode->GetClassID() != XFA_ELEMENT_PageSet) {
445 pChildItem = (CXFA_ContainerLayoutItem*)pChildItem->m_pNextSibling;
447 return pChildItem;
453 CXFA_ContainerLayoutItem* pChildItem =
455 while (pChildItem &&
456 pChildItem->m_pFormNode->GetClassID() != XFA_ELEMENT_PageSet) {
457 pChildItem = (CXFA_ContainerLayoutItem*)pChildItem->m_pNextSibling;
    [all...]
xfa_objectacc_imp.cpp     [all...]
  /external/pdfium/xfa/src/fxfa/src/common/
xfa_doclayout.h 45 void AddChild(CXFA_LayoutItem* pChildItem);
46 void AddHeadChild(CXFA_LayoutItem* pChildItem);
47 void RemoveChild(CXFA_LayoutItem* pChildItem);
48 void InsertChild(CXFA_LayoutItem* pBeforeItem, CXFA_LayoutItem* pChildItem);
xfa_utils.h 89 NodeType* pChildItem = *m_NodeStack.GetTopElement();
90 while ((pChildItem = TraverseStrategy::GetFirstChild(pChildItem)) !=
93 TraverseStrategy::GetNextSibling(pChildItem)) {
94 pChildItem = pNextItem;
96 m_NodeStack.Push(pChildItem);

Completed in 51 milliseconds