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

/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h641 Calls NextSibling and ToElement. Will skip all non-Element
650 Calls NextSibling and ToElement. Will skip all non-Element
698 virtual const TiXmlElement* ToElement() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type. function in class:TiXmlNode
705 virtual TiXmlElement* ToElement() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type. function in class:TiXmlNode
1133 virtual const TiXmlElement* ToElement() const { return this; } ///< Cast to a more defined type. Will return null not of the requested type. function in class:TiXmlElement
1134 virtual TiXmlElement* ToElement() { return this; } ///< Cast to a more defined type. Will return null not of the requested type. function in class:TiXmlElement
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();
1688 TiXmlElement* ToElement() cons function in class:TiXmlHandle
[all...]
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h641 Calls NextSibling and ToElement. Will skip all non-Element
650 Calls NextSibling and ToElement. Will skip all non-Element
698 virtual const TiXmlElement* ToElement() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type. function in class:TiXmlNode
705 virtual TiXmlElement* ToElement() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type. function in class:TiXmlNode
1133 virtual const TiXmlElement* ToElement() const { return this; } ///< Cast to a more defined type. Will return null not of the requested type. function in class:TiXmlElement
1134 virtual TiXmlElement* ToElement() { return this; } ///< Cast to a more defined type. Will return null not of the requested type. function in class:TiXmlElement
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();
1688 TiXmlElement* ToElement() cons function in class:TiXmlHandle
[all...]
/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 ); }
/external/tinyxml2/
H A Dtinyxml2.h444 virtual XMLElement* ToElement() { return 0; } ///< Safely cast to an Element, or null. function in class:tinyxml2::XMLNode
451 virtual const XMLElement* ToElement() const { return 0; } function in class:tinyxml2::XMLNode
850 virtual XMLElement* ToElement() { return this; } function in class:tinyxml2::XMLElement
851 virtual const XMLElement* ToElement() const { return this; } function in class:tinyxml2::XMLElement
1243 XMLElement* child2 = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).FirstChild().NextSibling().ToElement();
1290 XMLElement* ToElement() { return ( ( node && node->ToElement() ) ? node->ToElement() : 0 ); } function in class:tinyxml2::XMLHandle
1327 const XMLElement* ToElement() const { return ( ( node && node->ToElement() ) function in class:tinyxml2::XMLConstHandle
[all...]

Completed in 1276 milliseconds