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

/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h88 class TiXmlText;
146 virtual bool Visit( const TiXmlText& /*text*/ ) { return true; }
701 virtual const TiXmlText* ToText() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
708 virtual TiXmlText* ToText() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
1090 and concise, GetText() is limited compared to getting the TiXmlText child
1093 If the first child of 'this' is a TiXmlText, the GetText()
1212 class TiXmlText : public TiXmlNode class in inherits:TiXmlNode
1220 TiXmlText (const char * initValue ) : TiXmlNode (TiXmlNode::TINYXML_TEXT) function in class:TiXmlText
1225 virtual ~TiXmlText() {}
1229 TiXmlText( cons function in class:TiXmlText
1236 TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TINYXML_TEXT ) { copy.CopyTo( this ); } function in class:TiXmlText
[all...]
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h88 class TiXmlText;
146 virtual bool Visit( const TiXmlText& /*text*/ ) { return true; }
701 virtual const TiXmlText* ToText() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
708 virtual TiXmlText* ToText() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
1090 and concise, GetText() is limited compared to getting the TiXmlText child
1093 If the first child of 'this' is a TiXmlText, the GetText()
1212 class TiXmlText : public TiXmlNode class in inherits:TiXmlNode
1220 TiXmlText (const char * initValue ) : TiXmlNode (TiXmlNode::TINYXML_TEXT) function in class:TiXmlText
1225 virtual ~TiXmlText() {}
1229 TiXmlText( cons function in class:TiXmlText
1236 TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TINYXML_TEXT ) { copy.CopyTo( this ); } function in class:TiXmlText
[all...]
/external/tinyxml/
H A Dtinyxml.h90 class TiXmlText;
640 const TiXmlText* ToText() const { return ( this && type == TEXT ) ? (const TiXmlText*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
647 TiXmlText* ToText() { return ( this && type == TEXT ) ? (TiXmlText*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
954 and concise, GetText() is limited compared to getting the TiXmlText child
957 If the first child of 'this' is a TiXmlText, the GetText()
1061 class TiXmlText : public TiXmlNode class in inherits:TiXmlNode
1069 TiXmlText (const char * initValue ) : TiXmlNode (TiXmlNode::TEXT) function in class:TiXmlText
1074 virtual ~TiXmlText() {}
1078 TiXmlText( const std::string& initValue ) : TiXmlNode (TiXmlNode::TEXT) function in class:TiXmlText
1085 TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TEXT ) { copy.CopyTo( this ); } function in class:TiXmlText
[all...]

Completed in 38 milliseconds