• Home
  • Raw
  • Download

Lines Matching refs:XMLDocument

656 char* XMLDocument::Identify( char* p, XMLNode** node )  in Identify()
726 bool XMLDocument::Accept( XMLVisitor* visitor ) const in Accept()
742 XMLNode::XMLNode( XMLDocument* doc ) : in XMLNode()
781 XMLNode* XMLNode::DeepClone(XMLDocument* target) const in DeepClone()
1007 XMLDocument::DepthTracker tracker(_document); in ParseDeep()
1174 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1202 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ) in XMLComment()
1223 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1250 XMLDeclaration::XMLDeclaration( XMLDocument* doc ) : XMLNode( doc ) in XMLDeclaration()
1272 XMLNode* XMLDeclaration::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1299 XMLUnknown::XMLUnknown( XMLDocument* doc ) : XMLNode( doc ) in XMLUnknown()
1320 XMLNode* XMLUnknown::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1498 XMLElement::XMLElement( XMLDocument* doc ) : XMLNode( doc ), in XMLElement()
1927 XMLNode* XMLElement::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1983 const char* XMLDocument::_errorNames[XML_ERROR_COUNT] = {
2006 XMLDocument::XMLDocument( bool processEntities, Whitespace whitespaceMode ) : in XMLDocument() function in tinyxml2::XMLDocument
2028 XMLDocument::~XMLDocument() in ~XMLDocument()
2034 void XMLDocument::MarkInUse(XMLNode* node) in MarkInUse()
2047 void XMLDocument::Clear() in Clear()
2081 void XMLDocument::DeepCopy(XMLDocument* target) const in DeepCopy()
2094 XMLElement* XMLDocument::NewElement( const char* name ) in NewElement()
2102 XMLComment* XMLDocument::NewComment( const char* str ) in NewComment()
2110 XMLText* XMLDocument::NewText( const char* str ) in NewText()
2118 XMLDeclaration* XMLDocument::NewDeclaration( const char* str ) in NewDeclaration()
2126 XMLUnknown* XMLDocument::NewUnknown( const char* str ) in NewUnknown()
2149 void XMLDocument::DeleteNode( XMLNode* node ) { in DeleteNode()
2167 XMLError XMLDocument::LoadFile( const char* filename ) in LoadFile()
2209 XMLError XMLDocument::LoadFile( FILE* fp ) in LoadFile()
2255 XMLError XMLDocument::SaveFile( const char* filename, bool compact ) in SaveFile()
2274 XMLError XMLDocument::SaveFile( FILE* fp, bool compact ) in SaveFile()
2285 XMLError XMLDocument::Parse( const char* p, size_t len ) in Parse()
2316 void XMLDocument::Print( XMLPrinter* streamer ) const in Print()
2328 void XMLDocument::SetError( XMLError error, int lineNum, const char* format, ... ) in SetError()
2356 /*static*/ const char* XMLDocument::ErrorIDToName(XMLError errorID) in ErrorIDToName()
2364 const char* XMLDocument::ErrorStr() const in ErrorStr()
2370 void XMLDocument::PrintError() const in PrintError()
2375 const char* XMLDocument::ErrorName() const in ErrorName()
2380 void XMLDocument::Parse() in Parse()
2396 void XMLDocument::PushDepth() in PushDepth()
2404 void XMLDocument::PopDepth() in PopDepth()
2778 bool XMLPrinter::VisitEnter( const XMLDocument& doc ) in VisitEnter()