Searched defs:ToElement (Results 1 - 1 of 1) sorted by relevance

/external/tinyxml/
H A Dtinyxml.h590 Calls NextSibling and ToElement. Will skip all non-Element
597 Calls NextSibling and ToElement. Will skip all non-Element
637 const TiXmlElement* ToElement() const { return ( this && type == ELEMENT ) ? (const TiXmlElement*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type. function in class:TiXmlNode
644 TiXmlElement* ToElement() { return ( this && type == ELEMENT ) ? (TiXmlElement*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type. function in class:TiXmlNode
1496 TiXmlElement* Element() const { return ( ( node && node->ToElement() ) ? node->ToElement() : 0 ); }

Completed in 17 milliseconds