/external/webrtc/webrtc/libjingle/xmllite/ |
D | xmlelement.cc | 87 XmlChild* pChild; in XmlElement() local 91 for (pChild = elt.first_child_; pChild; pChild = pChild->NextChild()) { in XmlElement() 92 if (pChild->IsText()) { in XmlElement() 93 newChild = new XmlText(*(pChild->AsText())); in XmlElement() 95 newChild = new XmlElement(*(pChild->AsElement())); in XmlElement() 236 XmlChild* pChild; in FirstElement() local 237 for (pChild = first_child_; pChild; pChild = pChild->next_child_) { in FirstElement() 238 if (!pChild->IsText()) in FirstElement() 239 return pChild->AsElement(); in FirstElement() 245 XmlChild* pChild; in NextElement() local [all …]
|
/external/parameter-framework/upstream/parameter/ |
D | Element.cpp | 115 for (CElement *pChild : _childArray) { in dumpContent() 117 output += pChild->dumpContent(errorContext, depth + 1); in dumpContent() 155 CElement *pChild; in fromXml() local 159 pChild = findChildOfKind(childElement.getType()); in fromXml() 161 if (!pChild) { in fromXml() 171 pChild = createChild(childElement, serializingContext); in fromXml() 173 if (!pChild) { in fromXml() 180 if (!pChild->fromXml(childElement, serializingContext)) { in fromXml() 196 for (CElement *pChild : _childArray) { in childrenToXml() 201 xmlElement.createChild(xmlChildElement, pChild->getXmlElementName()); in childrenToXml() [all …]
|
D | XmlFileIncluderElement.cpp | 85 CElement *pChild = in fromXml() local 88 if (pChild) { in fromXml() 91 getParent()->addChild(pChild); in fromXml() 101 CXmlMemoryDocSink memorySink(pChild); in fromXml()
|
D | ComponentLibrary.cpp | 69 CElement *pChild = createChild(childElement, serializingContext); in fromXml() local 71 if (!pChild || !pChild->fromXml(childElement, serializingContext)) { in fromXml()
|
/external/pdfium/xfa/fwl/ |
D | cfwl_widgetmgr.cpp | 76 return pItem && pItem->pChild ? pItem->pChild->pWidget : nullptr; in GetFirstChildWidget() 84 pItem = pItem->pChild; in GetLastChildWidget() 107 Item* pChild = pItem->pParent->pChild; in AppendWidget() local 109 while (pChild) { in AppendWidget() 110 if (pChild == pItem) { in AppendWidget() 111 if (pChild->pPrevious) in AppendWidget() 112 pChild->pPrevious->pNext = pChild->pNext; in AppendWidget() 113 if (pChild->pNext) in AppendWidget() 114 pChild->pNext->pPrevious = pChild->pPrevious; in AppendWidget() 115 if (pItem->pParent->pChild == pItem) in AppendWidget() [all …]
|
D | cfwl_widgetmgr.h | 44 void InsertWidget(CFWL_Widget* pParent, CFWL_Widget* pChild); 47 void SetParent(CFWL_Widget* pParent, CFWL_Widget* pChild); 78 Item* pChild; variable
|
/external/pdfium/core/fxcrt/xml/ |
D | cfx_xmlnode.cpp | 33 CFX_XMLNode* pChild = m_pChild; in DeleteChildren() local 34 while (pChild) { in DeleteChildren() 35 CFX_XMLNode* pNext = pChild->m_pNext; in DeleteChildren() 36 delete pChild; in DeleteChildren() 37 pChild = pNext; in DeleteChildren() 44 CFX_XMLNode* pChild = m_pChild; in CountChildNodes() local 45 while (pChild) { in CountChildNodes() 47 pChild = pChild->m_pNext; in CountChildNodes() 53 CFX_XMLNode* pChild = m_pChild; in GetChildNode() local 54 while (pChild) { in GetChildNode() [all …]
|
D | cfx_xmlelement.cpp | 32 CFX_XMLNode* pChild = m_pChild; in Clone() local 33 while (pChild) { in Clone() 34 switch (pChild->GetType()) { in Clone() 36 wsText += static_cast<CFX_XMLText*>(pChild)->GetText(); in Clone() 41 pChild = pChild->m_pNext; in Clone() 84 CFX_XMLNode* pChild = m_pChild; in GetTextData() local 85 while (pChild) { in GetTextData() 86 switch (pChild->GetType()) { in GetTextData() 89 buffer << static_cast<CFX_XMLText*>(pChild)->GetText(); in GetTextData() 94 pChild = pChild->m_pNext; in GetTextData()
|
D | cfx_xmldoc.cpp | 125 CFX_XMLNode* pChild = pNode->m_pChild; in SaveXMLNode() local 126 while (pChild) { in SaveXMLNode() 127 SaveXMLNode(pXMLStream, static_cast<CFX_XMLNode*>(pChild)); in SaveXMLNode() 128 pChild = pChild->m_pNext; in SaveXMLNode()
|
D | cxml_element.cpp | 112 for (const auto& pChild : m_Children) { in CountElements() local 113 const CXML_Element* pKid = pChild->AsElement(); in CountElements() 127 for (const auto& pChild : m_Children) { in GetElement() local 128 CXML_Element* pKid = pChild->AsElement(); in GetElement()
|
/external/pdfium/fpdfsdk/pwl/ |
D | cpwl_wnd.cpp | 188 CPWL_Wnd* pChild = *it; in Destroy() local 189 if (pChild) { in Destroy() 191 pChild->Destroy(); in Destroy() 192 delete pChild; in Destroy() 265 for (CPWL_Wnd* pChild : m_Children) { in DrawChildAppearance() 266 if (!pChild) in DrawChildAppearance() 269 CFX_Matrix mt = pChild->GetChildMatrix(); in DrawChildAppearance() 271 pChild->DrawAppearance(pDevice, mtUser2Device); in DrawChildAppearance() 274 pChild->DrawAppearance(pDevice, mt); in DrawChildAppearance() 315 for (auto* pChild : m_Children) { \ [all …]
|
D | cpwl_edit_ctrl.cpp | 75 if (CPWL_Wnd* pChild = GetVScrollBar()) in SetScrollInfo() local 76 pChild->SetScrollInfo(info); in SetScrollInfo() 80 if (CPWL_Wnd* pChild = GetVScrollBar()) in SetScrollPosition() local 81 pChild->SetScrollPosition(pos); in SetScrollPosition()
|
D | cpwl_list_box.cpp | 236 if (CPWL_Wnd* pChild = GetVScrollBar()) in SetScrollInfo() local 237 pChild->SetScrollInfo(info); in SetScrollInfo() 241 if (CPWL_Wnd* pChild = GetVScrollBar()) in SetScrollPosition() local 242 pChild->SetScrollPosition(pos); in SetScrollPosition()
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_nodeiteratortemplate.h | 52 NodeType* pChild = TraverseStrategy::GetFirstChild(m_pCurrent); in MoveToNext() local 53 if (pChild) { in MoveToNext() 54 m_pCurrent = pChild; in MoveToNext() 112 NodeType* pChild = TraverseStrategy::GetFirstChild(pNode); in LastChild() local 113 while (pChild) { in LastChild() 114 pPrevious = pChild; in LastChild() 115 pChild = NextSiblingWithinSubtree(pChild); in LastChild() 121 NodeType* pChild = LastChild(pNode); in LastDescendant() local 122 return pChild ? LastDescendant(pChild) : pNode; in LastDescendant()
|
D | cxfa_xmllocale.cpp | 115 CXML_Element* pChild = m_pLocaleData->GetElement("", "calendarSymbols", 0); in GetCalendarSymbol() local 116 if (!pChild) in GetCalendarSymbol() 121 pChild->GetElement("", pstrSymbolNames.AsStringView(), 0); in GetCalendarSymbol() 126 pSymbolNames = pChild->GetElement("", pstrSymbolNames.AsStringView(), 1); in GetCalendarSymbol() 200 CXML_Element* pChild = pElement->GetElement("", bsTag, i); in GetPattern() local 201 if (pChild->GetAttrValue("name") == wsName) { in GetPattern() 202 CXML_Content* pContent = ToContent(pChild->GetChild(0)); in GetPattern()
|
D | cxfa_event.cpp | 57 CXFA_Node* pChild = GetFirstChild(); in GetEventType() local 58 while (pChild) { in GetEventType() 59 XFA_Element eType = pChild->GetElementType(); in GetEventType() 63 pChild = pChild->GetNextSibling(); in GetEventType()
|
D | cxfa_dataexporter.cpp | 53 for (CXFA_Node* pChild = pNode->GetFirstChild(); pChild; in Export() local 54 pChild = pChild->GetNextSibling()) { in Export() 55 Export(pStream, pChild, dwFlag, pChecksum); in Export()
|
D | cxfa_nodelocale.cpp | 140 CXFA_Node* pChild = pParent ? pParent->GetFirstChild() : nullptr; in GetNodeByName() local 141 while (pChild) { in GetNodeByName() 142 if (pChild->JSObject()->GetAttribute(XFA_Attribute::Name) == wsName) in GetNodeByName() 143 return pChild; in GetNodeByName() 145 pChild = pChild->GetNextSibling(); in GetNodeByName()
|
D | cxfa_fill.cpp | 79 CXFA_Node* pChild = GetFirstChild(); in GetType() local 80 while (pChild) { in GetType() 81 XFA_Element eType = pChild->GetElementType(); in GetType() 85 pChild = pChild->GetNextSibling(); in GetType()
|
D | cxfa_node.cpp | 260 for (CXFA_Node* pChild = GetFirstChild(); pChild; in Clone() local 261 pChild = pChild->GetNextSibling()) { in Clone() 262 pClone->InsertChild(pChild->Clone(bRecursive), nullptr); in Clone() 398 for (CXFA_Node* pChild = m_pChild; pChild; pChild = pChild->m_pNext) { in GetNodeList() local 399 if (pChild->GetElementType() == eTypeFilter) in GetNodeList() 400 nodes.push_back(pChild); in GetNodeList() 407 for (CXFA_Node* pChild = m_pChild; pChild; pChild = pChild->m_pNext) in GetNodeList() local 408 nodes.push_back(pChild); in GetNodeList() 419 for (CXFA_Node* pChild = m_pChild; pChild; pChild = pChild->m_pNext) { in GetNodeList() local 420 if (!HasProperty(pChild->GetElementType())) { in GetNodeList() [all …]
|
D | xfa_document_datamerger_imp.cpp | 202 CXFA_Node* pChild = pFormNode->GetFirstChild(); in CreateDataBinding() local 203 for (; pChild; pChild = pChild->GetNextSibling()) { in CreateDataBinding() 204 if (pChild->GetElementType() != XFA_Element::Field) in CreateDataBinding() 208 pChild->GetChild<CXFA_Value>(0, XFA_Element::Value, false); in CreateDataBinding() 217 pChild->GetChild<CXFA_Items>(0, XFA_Element::Items, false); in CreateDataBinding() 227 pChecked = pChild; in CreateDataBinding() 238 pChild = pFormNode->GetFirstChild(); in CreateDataBinding() 239 for (; pChild; pChild = pChild->GetNextSibling()) { in CreateDataBinding() 240 if (pChild == pChecked) in CreateDataBinding() 242 if (pChild->GetElementType() != XFA_Element::Field) in CreateDataBinding() [all …]
|
/external/pdfium/fxjs/xfa/ |
D | cjx_node.cpp | 273 CXFA_Node* pChild = GetXFANode()->GetFirstChild(); in loadXML() local 284 while (pChild) { in loadXML() 285 CXFA_Node* pItem = pChild->GetNextSibling(); in loadXML() 286 GetXFANode()->RemoveChild(pChild, true); in loadXML() 287 pFakeRoot->InsertChild(pChild, nullptr); in loadXML() 288 pChild = pItem; in loadXML() 303 CXFA_Node* pChild = pFakeRoot->GetFirstChild(); in loadXML() local 304 while (pChild) { in loadXML() 305 CXFA_Node* pItem = pChild->GetNextSibling(); in loadXML() 306 pFakeRoot->RemoveChild(pChild, true); in loadXML() [all …]
|
/external/pdfium/fxjs/ |
D | cfxjse_resolveprocessor.cpp | 237 for (CXFA_Node* pChild = curNode->GetFirstChild(); pChild; in ResolveNormal() local 238 pChild = pChild->GetNextSibling()) { in ResolveNormal() 239 if (pChild->GetElementType() == XFA_Element::Variables) { in ResolveNormal() 240 pVariablesNode = pChild; in ResolveNormal() 243 if (pChild->GetElementType() == XFA_Element::PageSet) { in ResolveNormal() 244 pPageSetNode = pChild; in ResolveNormal() 247 if (curNode->HasProperty(pChild->GetElementType())) in ResolveNormal() 248 properties.push_back(pChild); in ResolveNormal() 250 children.push_back(pChild); in ResolveNormal()
|
/external/pdfium/xfa/fxfa/ |
D | cxfa_widgetacc.cpp | 412 CXFA_Node* pChild = pUI ? pUI->GetFirstChild() : nullptr; in CreateUIChild() local 413 for (; pChild; pChild = pChild->GetNextSibling()) { in CreateUIChild() 414 XFA_Element eChildType = pChild->GetElementType(); in CreateUIChild() 420 auto node = CXFA_Node::Create(pChild->GetDocument(), XFA_Element::Ui, in CreateUIChild() 423 pUIChild = pChild; in CreateUIChild() 543 CXFA_Node* pChild = pNextChild; in ResetData() local 544 CXFA_WidgetAcc* pAcc = pChild->GetWidgetAcc(); in ResetData() 560 pChild->GetChild<CXFA_Items>(0, XFA_Element::Items, false); in ResetData() 573 pNextChild = pChild->GetNextContainerSibling(); in ResetData() 1674 CXFA_Node* pChild = node->GetFirstChild(); in SetCheckState() local [all …]
|
/external/pdfium/fpdfsdk/ |
D | fpdf_ext.cpp | 110 CXML_Element* pChild = ToElement(pElement->GetChild(i)); in CheckSharedForm() local 111 if (pChild && CheckSharedForm(pChild, cbName)) in CheckSharedForm()
|