Lines Matching defs:document
112 class to handle callbacks. For nodes that contain other nodes (Document, Element)
124 You should never change the document from a callback.
133 /// Visit a document.
135 /// Visit a document.
176 In XML, the document and elements can contain
180 A Document can contain: Element (container or leaf)
237 reflect changes in the document.
417 /** The parent class for everything in the Document Object Model.
420 in a document, or stand on its own. The type of a TiXmlNode
478 Document: filename of the xml file
501 Document: filename of the xml file
686 /** Return a pointer to the Document this node lives in.
687 Returns null if not in a document.
776 part of the tinyXML document object model. There are other
787 document = 0;
797 document = 0;
807 document = 0;
876 // Set the document pointer so the attribute can report errors.
877 void SetDocument( TiXmlDocument* doc ) { document = doc; }
883 TiXmlDocument* document; // A pointer back to a document, for error reporting.
1312 /// Is this a standalone document?
1389 /** Always the top level node. A document binds together all the
1391 The 'value' of a document node is the xml file name.
1396 /// Create an empty document, that has no name.
1398 /// Create a document with a name. The name of the document is also the filename of the xml.
1411 /** Load a file using the current document value.
1413 document data before loading.
1416 /// Save a file using the current document value. Returns true if successful.
1448 /** Get the root element -- the only top level element -- of the document.
1450 multiple elements at the document level.
1490 set, the default of 4 is used. The tabsize is set per document. Setting
1518 /** Write the document to standard out using formatted printing ("pretty print"). */
1521 /* Write the document to a string using formatted printing ("pretty print"). This
1527 /// Print this Document to a FILE stream.
1565 <Document>
1570 <Document>
1577 TiXmlElement* root = document.FirstChildElement( "Document" );
1597 TiXmlHandle docHandle( &document );
1598 TiXmlElement* child2 = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", 1 ).ToElement();
1617 TiXmlElement* child = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", i ).ToElement();
1630 TiXmlElement* child = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).FirstChild( "Child" ).ToElement();
1725 of the XML document. After TiXmlNode::Accept() is called, the printed document can