Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:DOCUMENT

134 	In XML, the document and elements can contain
138 A Document can contain: Element (container or leaf)
191 reflect changes in the document.
376 /** The parent class for everything in the Document Object Model.
379 in a document, or stand on its own. The type of a TiXmlNode
426 DOCUMENT,
440 Document: filename of the xml file
461 Document: filename of the xml file
622 The possible types are: DOCUMENT, ELEMENT, COMMENT,
627 /** Return a pointer to the Document this node lives in.
628 Returns null if not in a document.
636 const TiXmlDocument* ToDocument() const { return ( this && type == DOCUMENT ) ? (const TiXmlDocument*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
643 TiXmlDocument* ToDocument() { return ( this && type == DOCUMENT ) ? (TiXmlDocument*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
691 part of the tinyXML document object model. There are other
702 document = 0;
712 document = 0;
722 document = 0;
786 // Set the document pointer so the attribute can report errors.
787 void SetDocument( TiXmlDocument* doc ) { document = doc; }
793 TiXmlDocument* document; // A pointer back to a document, for error reporting.
1155 /// Is this a standalone document?
1217 /** Always the top level node. A document binds together all the
1219 The 'value' of a document node is the xml file name.
1224 /// Create an empty document, that has no name.
1226 /// Create a document with a name. The name of the document is also the filename of the xml.
1239 /** Load a file using the current document value.
1241 document data before loading.
1244 /// Save a file using the current document value. Returns true if successful.
1270 /** Get the root element -- the only top level element -- of the document.
1272 multiple elements at the document level.
1312 set, the default of 4 is used. The tabsize is set per document. Setting
1340 /** Dump the document to standard out. */
1343 /// Print this Document to a FILE stream.
1375 <Document>
1380 <Document>
1387 TiXmlElement* root = document.FirstChildElement( "Document" );
1407 TiXmlHandle docHandle( &document );
1408 TiXmlElement* child2 = docHandle.FirstChild( "Document
1427 TiXmlElement* child = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", i ).Element();
1440 TiXmlElement* child = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).FirstChild( "Child" ).Element();