OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ToComment
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
tinyxml.h
699
virtual const TiXmlComment*
ToComment
() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
706
virtual TiXmlComment*
ToComment
() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
[
all
...]
/external/sfntly/cpp/src/test/tinyxml/
tinyxml.h
699
virtual const TiXmlComment*
ToComment
() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
706
virtual TiXmlComment*
ToComment
() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
[
all
...]
/external/tinyxml/
tinyxml.h
638
const TiXmlComment*
ToComment
() const { return ( this && type == COMMENT ) ? (const TiXmlComment*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
645
TiXmlComment*
ToComment
() { return ( this && type == COMMENT ) ? (TiXmlComment*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
[
all
...]
/external/tinyxml2/
tinyxml2.h
446
virtual XMLComment*
ToComment
() { return 0; } ///< Safely cast to a Comment, or null.
453
virtual const XMLComment*
ToComment
() const { return 0; }
656
virtual XMLComment*
ToComment
() { return this; }
657
virtual const XMLComment*
ToComment
() const { return this; }
[
all
...]
Completed in 339 milliseconds