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

  /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...]
  /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...]
tinyxmlparser.cpp 746 && node->ToDeclaration() )
748 TiXmlDeclaration* dec = node->ToDeclaration();
    [all...]
xmltest.cpp 385 TiXmlDeclaration* declaration = doc.FirstChild()->ToDeclaration();
530 TiXmlDeclaration* dec = docH.Child( 0 ).Node()->ToDeclaration();
  /external/srec/tools/grxmlcompile/
grxmldoc.cpp 158 node.ToDeclaration()->Print( stdout, level);
    [all...]

Completed in 170 milliseconds