OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TiXmlUnknown
(Results
1 - 2
of
2
) sorted by null
/external/sfntly/cpp/src/test/tinyxml/
tinyxml.h
86
class
TiXmlUnknown
;
150
virtual bool Visit( const
TiXmlUnknown
& /*unknown*/ ) { return true; }
700
virtual const
TiXmlUnknown
* ToUnknown() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
707
virtual
TiXmlUnknown
* ToUnknown() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
[
all
...]
/external/tinyxml/
tinyxml.h
88
class
TiXmlUnknown
;
639
const
TiXmlUnknown
* ToUnknown() const { return ( this && type == UNKNOWN ) ? (const
TiXmlUnknown
*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
646
TiXmlUnknown
* ToUnknown() { return ( this && type == UNKNOWN ) ? (
TiXmlUnknown
*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
[
all
...]
Completed in 393 milliseconds