HomeSort by relevance Sort by last modified time
    Searched defs:ToComment (Results 1 - 3 of 3) sorted by null

  /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 600 milliseconds