Lines Matching refs:Attribute
134 struct Attribute { struct
139 int compare(const Attribute& rhs) const; argument
140 bool operator<(const Attribute& rhs) const;
141 bool operator==(const Attribute& rhs) const;
142 bool operator!=(const Attribute& rhs) const;
145 using const_iterator = std::vector<Attribute>::const_iterator;
173 std::vector<Attribute> attributes;
287 inline int XmlPullParser::Attribute::compare(const Attribute& rhs) const { in compare()
293 inline bool XmlPullParser::Attribute::operator<(const Attribute& rhs) const {
297 inline bool XmlPullParser::Attribute::operator==(const Attribute& rhs) const {
301 inline bool XmlPullParser::Attribute::operator!=(const Attribute& rhs) const {
311 [](const Attribute& attr, in FindAttribute()