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

  /external/pdfium/xfa/fxfa/parser/
cxfa_traversestrategy_contentareacontainerlayoutitem.h 16 for (CXFA_LayoutItem* pChildItem = pLayoutItem->m_pFirstChild; pChildItem;
17 pChildItem = pChildItem->m_pNextSibling) {
19 pChildItem->AsContainerLayoutItem()) {
28 for (CXFA_LayoutItem* pChildItem = pLayoutItem->m_pNextSibling; pChildItem;
29 pChildItem = pChildItem->m_pNextSibling) {
31 pChildItem->AsContainerLayoutItem())
    [all...]
cxfa_layoutitem.cpp 157 void CXFA_LayoutItem::AddChild(CXFA_LayoutItem* pChildItem) {
158 if (pChildItem->m_pParent)
159 pChildItem->m_pParent->RemoveChild(pChildItem);
161 pChildItem->m_pParent = this;
163 m_pFirstChild = pChildItem;
171 pExistingChildItem->m_pNextSibling = pChildItem;
174 void CXFA_LayoutItem::AddHeadChild(CXFA_LayoutItem* pChildItem) {
175 if (pChildItem->m_pParent)
176 pChildItem->m_pParent->RemoveChild(pChildItem)
    [all...]
cxfa_layoutitem.h 40 void AddChild(CXFA_LayoutItem* pChildItem);
41 void AddHeadChild(CXFA_LayoutItem* pChildItem);
42 void RemoveChild(CXFA_LayoutItem* pChildItem);
43 void InsertChild(CXFA_LayoutItem* pBeforeItem, CXFA_LayoutItem* pChildItem);
xfa_utils.h 103 NodeType* pChildItem = *m_NodeStack.GetTopElement();
104 while ((pChildItem = TraverseStrategy::GetFirstChild(pChildItem)) !=
107 TraverseStrategy::GetNextSibling(pChildItem)) {
108 pChildItem = pNextItem;
110 m_NodeStack.Push(pChildItem);
xfa_layout_itemlayout.cpp 397 for (CXFA_ContentLayoutItem* pChildItem =
399 pChildItem;
400 pChildItem = (CXFA_ContentLayoutItem*)pChildItem->m_pNextSibling) {
401 pChildItem->m_sPos.y += fHeight;
    [all...]
cxfa_simple_parser.cpp 495 for (CFDE_XMLNode* pChildItem =
497 pChildItem;
498 pChildItem = pChildItem->GetNodeItem(CFDE_XMLNode::NextSibling)) {
501 if (!MatchNodeName(pChildItem, pPacketInfo->pName, pPacketInfo->pURI,
508 pXMLConfigDOMRoot = pChildItem;
519 for (CFDE_XMLNode* pChildItem =
521 pChildItem;
522 pChildItem = pChildItem->GetNodeItem(CFDE_XMLNode::NextSibling))
    [all...]
cxfa_layoutpagemgr.cpp 34 CXFA_ContainerLayoutItem* pChildItem =
36 while (pChildItem &&
37 pChildItem->m_pFormNode->GetElementType() != XFA_Element::PageSet) {
38 pChildItem =
39 static_cast<CXFA_ContainerLayoutItem*>(pChildItem->m_pNextSibling);
41 return pChildItem;
46 CXFA_ContainerLayoutItem* pChildItem =
48 while (pChildItem &&
49 pChildItem->m_pFormNode->GetElementType() != XFA_Element::PageSet) {
50 pChildItem
    [all...]
cxfa_widgetdata.cpp     [all...]

Completed in 772 milliseconds