Home
last modified time | relevance | path

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

/external/tinyxml2/
Dtinyxml2.h96 class XMLNode; variable
433 class XMLNode
474 const XMLNode* Parent() const { return parent; } in Parent()
475 XMLNode* Parent() { return parent; } in Parent()
481 const XMLNode* FirstChild() const { return firstChild; } in FirstChild()
482 XMLNode* FirstChild() { return firstChild; } in FirstChild()
487 …st char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChi…
490 const XMLNode* LastChild() const { return lastChild; } in LastChild()
491XMLNode* LastChild() { return const_cast<XMLNode*>(const_cas… in LastChild()
497 …st char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->LastChil…
[all …]
Dtinyxml2.cpp52 node->~XMLNode(); \
451 char* XMLDocument::Identify( char* p, XMLNode** node ) in Identify()
453 XMLNode* returnNode = 0; in Identify()
531 for ( const XMLNode* node=FirstChild(); node; node=node->NextSibling() ) in Accept()
543 XMLNode::XMLNode( XMLDocument* doc ) : in XMLNode() function in XMLNode
552 XMLNode::~XMLNode() in ~XMLNode()
561 void XMLNode::SetValue( const char* str, bool staticMem ) in SetValue()
570 void XMLNode::DeleteChildren() in DeleteChildren()
573 XMLNode* node = firstChild; in DeleteChildren()
582 void XMLNode::Unlink( XMLNode* child ) in Unlink()
[all …]