Home
last modified time | relevance | path

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

/external/tinyxml2/
Dtinyxml2.h667 class TINYXML2_LIB XMLNode
748 const XMLNode* Parent() const { in Parent()
752 XMLNode* Parent() { in Parent()
762 const XMLNode* FirstChild() const { in FirstChild()
766 XMLNode* FirstChild() { in FirstChild()
776 return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( name ));
780 const XMLNode* LastChild() const { in LastChild()
784 XMLNode* LastChild() { in LastChild()
794 return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->LastChildElement(name) );
798 const XMLNode* PreviousSibling() const { in PreviousSibling()
[all …]
Dtinyxml2.cpp656 char* XMLDocument::Identify( char* p, XMLNode** node ) in Identify()
684 XMLNode* returnNode = 0; in Identify()
730 for ( const XMLNode* node=FirstChild(); node; node=node->NextSibling() ) { in Accept()
742 XMLNode::XMLNode( XMLDocument* doc ) : in XMLNode() function in tinyxml2::XMLNode
755 XMLNode::~XMLNode() in ~XMLNode()
763 const char* XMLNode::Value() const in Value()
771 void XMLNode::SetValue( const char* str, bool staticMem ) in SetValue()
781 XMLNode* XMLNode::DeepClone(XMLDocument* target) const in DeepClone()
783 XMLNode* clone = this->ShallowClone(target); in DeepClone()
786 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()
1023 XMLNode* childNode0 = parent->InsertEndChild( childText0 ); in main()
1025 XMLNode* childNode1 = parent->InsertAfterChild( childNode0, childText1 ); in main()
[all …]