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

  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.h 702 virtual const TiXmlDeclaration* ToDeclaration() const { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
709 virtual TiXmlDeclaration* ToDeclaration() { return 0; } ///< Cast to a more defined type. Will return null if not of the requested type.
    [all...]
  /external/tinyxml/
tinyxml.h 641 const TiXmlDeclaration* ToDeclaration() const { return ( this && type == DECLARATION ) ? (const TiXmlDeclaration*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
648 TiXmlDeclaration* ToDeclaration() { return ( this && type == DECLARATION ) ? (TiXmlDeclaration*) this : 0; } ///< Cast to a more defined type. Will return null not of the requested type.
    [all...]
  /external/tinyxml2/
tinyxml2.h 448 virtual XMLDeclaration* ToDeclaration() { return 0; } ///< Safely cast to a Declaration, or null.
455 virtual const XMLDeclaration* ToDeclaration() const { return 0; }
690 virtual XMLDeclaration* ToDeclaration() { return this; }
691 virtual const XMLDeclaration* ToDeclaration() const { return this; }
    [all...]

Completed in 35 milliseconds