Home | History | Annotate | Download | only in tinyxml

Lines Matching refs:DECLARATION

141 							Declaration( leaf )
431 DECLARATION,
623 UNKNOWN, TEXT, and DECLARATION.
641 const TiXmlDeclaration* ToDeclaration() const { return ( this && type == DECLARATION ) ? (const TiXmlDeclaration*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
648 TiXmlDeclaration* ToDeclaration() { return ( this && type == DECLARATION ) ? (TiXmlDeclaration*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
802 It is only used internally, both by the ELEMENT and the DECLARATION.
804 The set can be changed transparent to the Element and Declaration
1115 /** In correct XML the declaration is the first entry in the file.
1120 TinyXml will happily read or write files without a declaration,
1121 however. There are 3 possible attributes to the declaration:
1131 /// Construct an empty declaration.
1132 TiXmlDeclaration() : TiXmlNode( TiXmlNode::DECLARATION ) {}
1158 /// Creates a copy of this Declaration and returns it.
1160 /// Print this declaration to a FILE stream.