• Home
  • Raw
  • Download

Lines Matching refs:TiXmlAttribute

87 class TiXmlAttribute;  variable
139 …virtual bool VisitEnter( const TiXmlElement& /*element*/, const TiXmlAttribute* /*firstAttribute*/… in VisitEnter() argument
779 class TiXmlAttribute : public TiXmlBase
785 TiXmlAttribute() : TiXmlBase() in TiXmlAttribute() function
793 TiXmlAttribute( const std::string& _name, const std::string& _value ) in TiXmlAttribute() function
803 TiXmlAttribute( const char * _name, const char * _value ) in TiXmlAttribute() function
849 const TiXmlAttribute* Next() const;
850 TiXmlAttribute* Next() { in Next()
851 return const_cast< TiXmlAttribute* >( (const_cast< const TiXmlAttribute* >(this))->Next() ); in Next()
855 const TiXmlAttribute* Previous() const;
856 TiXmlAttribute* Previous() { in Previous()
857 return const_cast< TiXmlAttribute* >( (const_cast< const TiXmlAttribute* >(this))->Previous() ); in Previous()
860 bool operator==( const TiXmlAttribute& rhs ) const { return rhs.name == name; }
861 bool operator<( const TiXmlAttribute& rhs ) const { return name < rhs.name; }
862 bool operator>( const TiXmlAttribute& rhs ) const { return name > rhs.name; }
880 TiXmlAttribute( const TiXmlAttribute& ); // not implemented.
881 void operator=( const TiXmlAttribute& base ); // not allowed.
886 TiXmlAttribute* prev;
887 TiXmlAttribute* next;
909 void Add( TiXmlAttribute* attribute );
910 void Remove( TiXmlAttribute* attribute );
912 const TiXmlAttribute* First() const { return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; } in First()
913 TiXmlAttribute* First() { return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; } in First()
914 const TiXmlAttribute* Last() const { return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev; } in Last()
915 TiXmlAttribute* Last() { return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev; } in Last()
917 TiXmlAttribute* Find( const char* _name ) const;
918 TiXmlAttribute* FindOrCreate( const char* _name );
921 TiXmlAttribute* Find( const std::string& _name ) const;
922 TiXmlAttribute* FindOrCreate( const std::string& _name );
932 TiXmlAttribute sentinel;
1026 const TiXmlAttribute* node = attributeSet.Find( name ); in QueryValueAttribute()
1039 const TiXmlAttribute* node = attributeSet.Find( name ); in QueryValueAttribute()
1084 …const TiXmlAttribute* FirstAttribute() const { return attributeSet.First(); } ///< Access the fir… in FirstAttribute()
1085 TiXmlAttribute* FirstAttribute() { return attributeSet.First(); } in FirstAttribute()
1086 …const TiXmlAttribute* LastAttribute() const { return attributeSet.Last(); } ///< Access the last… in LastAttribute()
1087 TiXmlAttribute* LastAttribute() { return attributeSet.Last(); } in LastAttribute()
1746 virtual bool VisitEnter( const TiXmlElement& element, const TiXmlAttribute* firstAttribute );