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

  /external/tinyxml2/
tinyxml2.h 94 class XMLAttribute;
343 virtual bool VisitEnter( const XMLElement& /*element*/, const XMLAttribute* /*firstAttribute*/ ) { return true; }
769 class XMLAttribute
775 const XMLAttribute* Next() const { return next; } ///< The next attribute in the list.
821 XMLAttribute() : next( 0 ) {}
822 virtual ~XMLAttribute() {}
823 XMLAttribute( const XMLAttribute& ); // not supported
824 void operator=( const XMLAttribute& ); // not supported
831 XMLAttribute* next;
    [all...]
tinyxml2.cpp 59 attrib->~XMLAttribute(); \
993 // --------- XMLAttribute ---------- //
994 char* XMLAttribute::ParseDeep( char* p, bool processEntities )
1016 void XMLAttribute::SetName( const char* n )
1022 int XMLAttribute::QueryIntValue( int* value ) const
1030 int XMLAttribute::QueryUnsignedValue( unsigned int* value ) const
1038 int XMLAttribute::QueryBoolValue( bool* value ) const
1047 int XMLAttribute::QueryFloatValue( float* value ) const
1055 int XMLAttribute::QueryDoubleValue( double* value ) const
1063 void XMLAttribute::SetAttribute( const char* v )
    [all...]

Completed in 226 milliseconds