• Home
  • Raw
  • Download

Lines Matching refs:XMLDocument

451 char* XMLDocument::Identify( char* p, XMLNode** node )  in Identify()
527 bool XMLDocument::Accept( XMLVisitor* visitor ) const in Accept()
543 XMLNode::XMLNode( XMLDocument* doc ) : in XMLNode()
830 XMLNode* XMLText::ShallowClone( XMLDocument* doc ) const in ShallowClone()
855 XMLComment::XMLComment( XMLDocument* doc ) : XMLNode( doc ) in XMLComment()
878 XMLNode* XMLComment::ShallowClone( XMLDocument* doc ) const in ShallowClone()
902 XMLDeclaration::XMLDeclaration( XMLDocument* doc ) : XMLNode( doc ) in XMLDeclaration()
925 XMLNode* XMLDeclaration::ShallowClone( XMLDocument* doc ) const in ShallowClone()
949 XMLUnknown::XMLUnknown( XMLDocument* doc ) : XMLNode( doc ) in XMLUnknown()
972 XMLNode* XMLUnknown::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1108 XMLElement::XMLElement( XMLDocument* doc ) : XMLNode( doc ), in XMLElement()
1366 XMLNode* XMLElement::ShallowClone( XMLDocument* doc ) const in ShallowClone()
1419 XMLDocument::XMLDocument( bool _processEntities ) : in XMLDocument() function in XMLDocument
1432 XMLDocument::~XMLDocument() in ~XMLDocument()
1451 void XMLDocument::InitDocument() in InitDocument()
1463 XMLElement* XMLDocument::NewElement( const char* name ) in NewElement()
1472 XMLComment* XMLDocument::NewComment( const char* str ) in NewComment()
1481 XMLText* XMLDocument::NewText( const char* str ) in NewText()
1490 XMLDeclaration* XMLDocument::NewDeclaration( const char* str ) in NewDeclaration()
1499 XMLUnknown* XMLDocument::NewUnknown( const char* str ) in NewUnknown()
1508 int XMLDocument::LoadFile( const char* filename ) in LoadFile()
1531 int XMLDocument::LoadFile( FILE* fp ) in LoadFile()
1566 int XMLDocument::SaveFile( const char* filename ) in SaveFile()
1588 int XMLDocument::SaveFile( FILE* fp ) in SaveFile()
1596 int XMLDocument::Parse( const char* p ) in Parse()
1622 void XMLDocument::Print( XMLPrinter* streamer ) in Print()
1631 void XMLDocument::SetError( int error, const char* str1, const char* str2 ) in SetError()
1639 void XMLDocument::PrintError() const in PrintError()
1969 bool XMLPrinter::VisitEnter( const XMLDocument& doc ) in VisitEnter()