Home
last modified time | relevance | path

Searched refs:ToComment (Results 1 – 6 of 6) sorted by relevance

/external/tinyxml/
Dxmltest.cpp261 XmlTest( "First child exists & is a comment.", true, ( node != 0 && node->ToComment() ) ); in main()
392 TiXmlComment* comment = commentHandle.Node()->ToComment(); in main()
898 TiXmlComment* comment = docH.Child( 0 ).Node()->ToComment(); in main()
Dtinyxml.h638 …const TiXmlComment* ToComment() const { return ( this && type == COMMENT ) ? (const TiXmlComme… in ToComment() function
645 …TiXmlComment* ToComment() { return ( this && type == COMMENT ) ? (TiXmlComment*) this : 0; } … in ToComment() function
/external/sfntly/cpp/src/test/tinyxml/
Dtinyxml.h699 …virtual const TiXmlComment* ToComment() const { return 0; } ///< Cast to a more defined ty… in ToComment() function
706 …virtual TiXmlComment* ToComment() { return 0; } ///< Cast to a more defined type. Wi… in ToComment() function
1186 …virtual const TiXmlComment* ToComment() const { return this; } ///< Cast to a more defined type. … in ToComment() function
1187 …virtual TiXmlComment* ToComment() { return this; } ///< Cast to a more defined type. Will ret… in ToComment() function
/external/tinyxml2/
Dtinyxml2.h693 virtual XMLComment* ToComment() { in ToComment() function
715 virtual const XMLComment* ToComment() const { in ToComment() function
1028 virtual XMLComment* ToComment() { in ToComment() function
1031 virtual const XMLComment* ToComment() const { in ToComment() function
Dxmltest.cpp1152 XMLComment* comment = doc.FirstChild()->ToComment(); in main()
1236 XMLComment* c0 = e0->ToComment(); in main()
1237 XMLComment* c1 = e1->ToComment(); in main()
Dtinyxml2.cpp1236 const XMLComment* comment = compare->ToComment(); in ShallowEqual()