• Home
  • Raw
  • Download

Lines Matching refs:XMLAttribute

94 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()
909 …dAttribute( const char* name, unsigned int* _value ) const { const XMLAttribute* a = FindAttrib… in QueryUnsignedAttribute()
911 …ribute( const char* name, bool* _value ) const { const XMLAttribute* a = FindAttrib… in QueryBoolAttribute()
913 …ttribute( const char* name, double* _value ) const { const XMLAttribute* a = FindAttrib… in QueryDoubleAttribute()
915 …Attribute( const char* name, float* _value ) const { const XMLAttribute* a = FindAttrib… in QueryFloatAttribute()
918 …void SetAttribute( const char* name, const char* _value ) { XMLAttribute* a = FindOrCreateAttri… in SetAttribute()
920 …void SetAttribute( const char* name, int _value ) { XMLAttribute* a = FindOrCreateAttri… in SetAttribute()
922 …void SetAttribute( const char* name, unsigned _value ) { XMLAttribute* a = FindOrCreateAttr… in SetAttribute()
924 …void SetAttribute( const char* name, bool _value ) { XMLAttribute* a = FindOrCreateAttr… in SetAttribute()
926 …void SetAttribute( const char* name, double _value ) { XMLAttribute* a = FindOrCreateAttrib… in SetAttribute()
934 const XMLAttribute* FirstAttribute() const { return rootAttribute; } in FirstAttribute()
936 const XMLAttribute* FindAttribute( const char* name ) const;
1021 XMLAttribute* FindAttribute( const char* name );
1022 XMLAttribute* FindOrCreateAttribute( const char* name );
1030 XMLAttribute* rootAttribute;
1197 MemPoolT< sizeof(XMLAttribute) > attributePool;
1428 virtual bool VisitEnter( const XMLElement& element, const XMLAttribute* attribute );