Searched refs:XMLAttribute (Results 1 – 3 of 3) sorted by relevance
120 class XMLAttribute; variable495 … virtual bool VisitEnter( const XMLElement& /*element*/, const XMLAttribute* /*firstAttribute*/ ) { in VisitEnter() argument1134 class TINYXML2_LIB XMLAttribute1148 const XMLAttribute* Next() const { in Next()1237 XMLAttribute() : _name(), _value(),_parseLineNum( 0 ), _next( 0 ), _memPool( 0 ) {} in XMLAttribute() function1238 virtual ~XMLAttribute() {} in ~XMLAttribute()1240 XMLAttribute( const XMLAttribute& ); // not supported1241 void operator=( const XMLAttribute& ); // not supported1249 XMLAttribute* _next;1338 const XMLAttribute* a = FindAttribute( name ); in QueryIntAttribute()[all …]
1368 const char* XMLAttribute::Name() const in Name()1373 const char* XMLAttribute::Value() const in Value()1378 char* XMLAttribute::ParseDeep( char* p, bool processEntities, int* curLineNumPtr ) in ParseDeep()1406 void XMLAttribute::SetName( const char* n ) in SetName()1412 XMLError XMLAttribute::QueryIntValue( int* value ) const in QueryIntValue()1421 XMLError XMLAttribute::QueryUnsignedValue( unsigned int* value ) const in QueryUnsignedValue()1430 XMLError XMLAttribute::QueryInt64Value(int64_t* value) const in QueryInt64Value()1439 XMLError XMLAttribute::QueryUnsigned64Value(uint64_t* value) const in QueryUnsigned64Value()1448 XMLError XMLAttribute::QueryBoolValue( bool* value ) const in QueryBoolValue()1457 XMLError XMLAttribute::QueryFloatValue( float* value ) const in QueryFloatValue()[all …]
984 const XMLAttribute* attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-text"); in main()1543 const XMLAttribute* a = ele->FirstAttribute(); in main()2372 bool VisitEnter(const XMLElement& element, const XMLAttribute* firstAttribute) in main()2375 for (const XMLAttribute *attr = firstAttribute; attr != 0; attr = attr->Next()) in main()