Home
last modified time | relevance | path

Searched refs:XMLAttribute (Results 1 – 2 of 2) sorted by relevance

/external/tinyxml2/
Dtinyxml2.h94 class XMLAttribute; variable
343 …virtual bool VisitEnter( const XMLElement& /*element*/, const XMLAttribute* /*firstAttribute*/ ) … in VisitEnter() argument
769 class XMLAttribute
775 … const XMLAttribute* Next() const { return next; } ///< The next attribute in the list. in Next()
821 XMLAttribute() : next( 0 ) {} in XMLAttribute() function
822 virtual ~XMLAttribute() {} in ~XMLAttribute()
823 XMLAttribute( const XMLAttribute& ); // not supported
824 void operator=( const XMLAttribute& ); // not supported
831 XMLAttribute* next;
907 …tribute( const char* name, int* _value ) const { const XMLAttribute* a = FindAttrib… in QueryIntAttribute()
[all …]
Dtinyxml2.cpp59 attrib->~XMLAttribute(); \
994 char* XMLAttribute::ParseDeep( char* p, bool processEntities ) in ParseDeep()
1016 void XMLAttribute::SetName( const char* n ) in SetName()
1022 int XMLAttribute::QueryIntValue( int* value ) const in QueryIntValue()
1030 int XMLAttribute::QueryUnsignedValue( unsigned int* value ) const in QueryUnsignedValue()
1038 int XMLAttribute::QueryBoolValue( bool* value ) const in QueryBoolValue()
1047 int XMLAttribute::QueryFloatValue( float* value ) const in QueryFloatValue()
1055 int XMLAttribute::QueryDoubleValue( double* value ) const in QueryDoubleValue()
1063 void XMLAttribute::SetAttribute( const char* v ) in SetAttribute()
1069 void XMLAttribute::SetAttribute( int v ) in SetAttribute()
[all …]