OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TiXmlText
(Results
1 - 2
of
2
) sorted by null
/external/sfntly/cpp/src/test/tinyxml/
tinyxml.h
88
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.
[
all
...]
/external/tinyxml/
tinyxml.h
90
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.
[
all
...]
Completed in 110 milliseconds