Home | History | Annotate | Download | only in tinyxml

Lines Matching defs:Unknown

140 							Unknown (leaf)
147 Unknown (leaf)
422 unsupported types are picked up by UNKNOWN.)
429 UNKNOWN,
443 Unknown: the tag contents
464 Unknown: the tag contents
623 UNKNOWN, TEXT, and DECLARATION.
639 const TiXmlUnknown* ToUnknown() const { return ( this && type == UNKNOWN ) ? (const TiXmlUnknown*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
646 TiXmlUnknown* ToUnknown() { return ( this && type == UNKNOWN ) ? (TiXmlUnknown*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
1182 unknown. It is a tag of text, but should not be modified.
1191 TiXmlUnknown() : TiXmlNode( TiXmlNode::UNKNOWN ) {}
1194 TiXmlUnknown( const TiXmlUnknown& copy ) : TiXmlNode( TiXmlNode::UNKNOWN ) { copy.CopyTo( this ); }
1197 /// Creates a copy of this Unknown and returns it.
1199 /// Print this Unknown to a FILE stream.
1500 TiXmlUnknown* Unknown() const { return ( ( node && node->ToUnknown() ) ? node->ToUnknown() : 0 ); }