• Home
  • Raw
  • Download

Lines Matching refs:XMLAttribute

120 class XMLAttribute;  variable
495 … virtual bool VisitEnter( const XMLElement& /*element*/, const XMLAttribute* /*firstAttribute*/ ) { in VisitEnter() argument
1133 class TINYXML2_LIB XMLAttribute
1147 const XMLAttribute* Next() const { in Next()
1226 XMLAttribute() : _name(), _value(),_parseLineNum( 0 ), _next( 0 ), _memPool( 0 ) {} in XMLAttribute() function
1227 virtual ~XMLAttribute() {} in ~XMLAttribute()
1229 XMLAttribute( const XMLAttribute& ); // not supported
1230 void operator=( const XMLAttribute& ); // not supported
1238 XMLAttribute* _next;
1325 const XMLAttribute* a = FindAttribute( name ); in QueryIntAttribute()
1334 const XMLAttribute* a = FindAttribute( name ); in QueryUnsignedAttribute()
1343 const XMLAttribute* a = FindAttribute(name); in QueryInt64Attribute()
1352 const XMLAttribute* a = FindAttribute( name ); in QueryBoolAttribute()
1360 const XMLAttribute* a = FindAttribute( name ); in QueryDoubleAttribute()
1368 const XMLAttribute* a = FindAttribute( name ); in QueryFloatAttribute()
1377 const XMLAttribute* a = FindAttribute(name); in QueryStringAttribute()
1430 XMLAttribute* a = FindOrCreateAttribute( name ); in SetAttribute()
1435 XMLAttribute* a = FindOrCreateAttribute( name ); in SetAttribute()
1440 XMLAttribute* a = FindOrCreateAttribute( name ); in SetAttribute()
1446 XMLAttribute* a = FindOrCreateAttribute(name); in SetAttribute()
1452 XMLAttribute* a = FindOrCreateAttribute( name ); in SetAttribute()
1457 XMLAttribute* a = FindOrCreateAttribute( name ); in SetAttribute()
1462 XMLAttribute* a = FindOrCreateAttribute( name ); in SetAttribute()
1472 const XMLAttribute* FirstAttribute() const { in FirstAttribute()
1476 const XMLAttribute* FindAttribute( const char* name ) const;
1628 XMLAttribute* FindOrCreateAttribute( const char* name );
1630 static void DeleteAttribute( XMLAttribute* attribute );
1631 XMLAttribute* CreateAttribute();
1638 XMLAttribute* _rootAttribute;
1890 MemPoolT< sizeof(XMLAttribute) > _attributePool;
2229 virtual bool VisitEnter( const XMLElement& element, const XMLAttribute* attribute );