• Home
  • Raw
  • Download

Lines Matching refs:XMLNode

656 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()
787 XMLNode* childClone = child->DeepClone(target); in DeepClone()
794 void XMLNode::DeleteChildren() in DeleteChildren()
804 void XMLNode::Unlink( XMLNode* child ) in Unlink()
828 void XMLNode::DeleteChild( XMLNode* node ) in DeleteChild()
841 XMLNode* XMLNode::InsertEndChild( XMLNode* addThis ) in InsertEndChild()
871 XMLNode* XMLNode::InsertFirstChild( XMLNode* addThis ) in InsertFirstChild()
902 XMLNode* XMLNode::InsertAfterChild( XMLNode* afterThis, XMLNode* addThis ) in InsertAfterChild()
940 const XMLElement* XMLNode::FirstChildElement( const char* name ) const in FirstChildElement()
942 for( const XMLNode* node = _firstChild; node; node = node->_next ) { in FirstChildElement()
952 const XMLElement* XMLNode::LastChildElement( const char* name ) const in LastChildElement()
954 for( const XMLNode* node = _lastChild; node; node = node->_prev ) { in LastChildElement()
964 const XMLElement* XMLNode::NextSiblingElement( const char* name ) const in NextSiblingElement()
966 for( const XMLNode* node = _next; node; node = node->_next ) { in NextSiblingElement()
976 const XMLElement* XMLNode::PreviousSiblingElement( const char* name ) const in PreviousSiblingElement()
978 for( const XMLNode* node = _prev; node; node = node->_prev ) { in PreviousSiblingElement()
988 char* XMLNode::ParseDeep( char* p, StrPair* parentEndTag, int* curLineNumPtr ) in ParseDeep()
1012 XMLNode* node = 0; in ParseDeep()
1102 /*static*/ void XMLNode::DeleteNode( XMLNode* node ) in DeleteNode()
1113 node->~XMLNode(); in DeleteNode()
1117 void XMLNode::InsertChildPreamble( XMLNode* insertThis ) const in InsertChildPreamble()
1131 const XMLElement* XMLNode::ToElementWithName( const char* name ) const in ToElementWithName()
1174 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1185 bool XMLText::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1202 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ) in XMLComment()
1223 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1233 bool XMLComment::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1250 XMLDeclaration::XMLDeclaration( XMLDocument* doc ) : XMLNode( doc ) in XMLDeclaration()
1272 XMLNode* XMLDeclaration::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1282 bool XMLDeclaration::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1299 XMLUnknown::XMLUnknown( XMLDocument* doc ) : XMLNode( doc ) in XMLUnknown()
1320 XMLNode* XMLUnknown::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1330 bool XMLUnknown::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1498 XMLElement::XMLElement( XMLDocument* doc ) : XMLNode( doc ), in XMLElement()
1921 p = XMLNode::ParseDeep( p, parentEndTag, curLineNumPtr ); in ParseDeep()
1927 XMLNode* XMLElement::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1940 bool XMLElement::ShallowEqual( const XMLNode* compare ) const in ShallowEqual()
1970 for ( const XMLNode* node=FirstChild(); node; node=node->NextSibling() ) { in Accept()
2007 XMLNode( 0 ), in XMLDocument()
2034 void XMLDocument::MarkInUse(XMLNode* node) in MarkInUse()
2089 for (const XMLNode* node = this->FirstChild(); node; node = node->NextSibling()) { in DeepCopy()
2149 void XMLDocument::DeleteNode( XMLNode* node ) { in DeleteNode()
2162 XMLNode::DeleteNode(node); in DeleteNode()