Home
last modified time | relevance | path

Searched refs:XMLNode (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/lldb/source/Host/common/
DXML.cpp66 XMLNode XMLDocument::GetRootElement(const char *required_name) { in GetRootElement()
69 XMLNode root_node(xmlDocGetRootElement(m_document)); in GetRootElement()
79 return XMLNode(); in GetRootElement()
92 #pragma mark-- XMLNode
94 XMLNode::XMLNode() : m_node(nullptr) {} in XMLNode() function in XMLNode
96 XMLNode::XMLNode(XMLNodeImpl node) : m_node(node) {} in XMLNode() function in XMLNode
98 XMLNode::~XMLNode() {} in ~XMLNode()
100 void XMLNode::Clear() { m_node = nullptr; } in Clear()
102 XMLNode XMLNode::GetParent() const { in GetParent()
105 return XMLNode(m_node->parent); in GetParent()
[all …]
/external/llvm-project/lldb/include/lldb/Host/
DXML.h38 class XMLNode; variable
41 typedef std::function<bool(const XMLNode &node)> NodeCallback;
46 class XMLNode {
48 XMLNode();
50 XMLNode(XMLNodeImpl node);
52 ~XMLNode();
73 XMLNode GetParent() const;
75 XMLNode GetSibling() const;
77 XMLNode GetChild() const;
85 XMLNode FindFirstChildElementWithName(const char *name) const;
[all …]
/external/tinyxml2/
Dtinyxml2.h668 class TINYXML2_LIB XMLNode
749 const XMLNode* Parent() const { in Parent()
753 XMLNode* Parent() { in Parent()
763 const XMLNode* FirstChild() const { in FirstChild()
767 XMLNode* FirstChild() { in FirstChild()
777 return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( name ));
781 const XMLNode* LastChild() const { in LastChild()
785 XMLNode* LastChild() { in LastChild()
795 return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->LastChildElement(name) );
799 const XMLNode* PreviousSibling() const { in PreviousSibling()
[all …]
Dtinyxml2.cpp678 char* XMLDocument::Identify( char* p, XMLNode** node ) in Identify()
706 XMLNode* returnNode = 0; in Identify()
752 for ( const XMLNode* node=FirstChild(); node; node=node->NextSibling() ) { in Accept()
764 XMLNode::XMLNode( XMLDocument* doc ) : in XMLNode() function in tinyxml2::XMLNode
777 XMLNode::~XMLNode() in ~XMLNode()
785 const char* XMLNode::Value() const in Value()
793 void XMLNode::SetValue( const char* str, bool staticMem ) in SetValue()
803 XMLNode* XMLNode::DeepClone(XMLDocument* target) const in DeepClone()
805 XMLNode* clone = this->ShallowClone(target); in DeepClone()
808 for (const XMLNode* child = this->FirstChild(); child; child = child->NextSibling()) { in DeepClone()
[all …]
Dxmltest.cpp444 XMLNode* first = doc.NewElement( "firstElement" ); in main()
446 XMLNode* firstAfterInsertion = doc.InsertFirstChild( first ); in main()
449 XMLNode* last = doc.NewElement( "lastElement" ); in main()
451 XMLNode* lastAfterInsertion = doc.InsertEndChild( last ); in main()
454 XMLNode* middle = doc.NewElement( "middleElement" ); in main()
456 XMLNode* middleAfterInsertion = doc.InsertAfterChild( first, middle ); in main()
470 XMLNode* element = doc->InsertEndChild( doc->NewElement( "element" ) ); in main()
481 XMLNode* comment = element->InsertFirstChild( doc->NewComment( "comment" ) ); in main()
1147 XMLNode* childNode0 = parent->InsertEndChild( childText0 ); in main()
1149 XMLNode* childNode1 = parent->InsertAfterChild( childNode0, childText1 ); in main()
[all …]
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp4277 bool ParseRegisters(XMLNode feature_node, GdbServerTargetInfo &target_info, in ParseRegisters()
4286 &reg_offset, &abi_sp](const XMLNode &reg_node) -> bool { in ParseRegisters()
4481 std::vector<XMLNode> feature_nodes; in GetGDBServerRegisterInfoXMLAndProcess()
4484 XMLNode target_node = xml_document.GetRootElement("target"); in GetGDBServerRegisterInfoXMLAndProcess()
4487 const XMLNode &node) -> bool { in GetGDBServerRegisterInfoXMLAndProcess()
4501 "group", [&target_info](const XMLNode &node) -> bool { in GetGDBServerRegisterInfoXMLAndProcess()
4528 XMLNode feature_node = xml_document.GetRootElement("feature"); in GetGDBServerRegisterInfoXMLAndProcess()
4532 const XMLNode &node) -> bool { in GetGDBServerRegisterInfoXMLAndProcess()
4637 XMLNode root_element = doc.GetRootElement("library-list-svr4"); in GetLoadedModuleList()
4651 "library", [log, &list](const XMLNode &library) -> bool { in GetLoadedModuleList()
[all …]
DGDBRemoteCommunicationClient.cpp1653 XMLNode map_node = xml_document.GetRootElement("memory-map"); in LoadQXferMemoryMap()
1661 map_node.ForEachChildElement([this](const XMLNode &memory_node) -> bool { in LoadQXferMemoryMap()
1686 [&region](const XMLNode &prop_node) -> bool { in LoadQXferMemoryMap()