HomeSort by relevance Sort by last modified time
    Searched defs:XMLAttribute (Results 1 - 3 of 3) sorted by null

  /frameworks/base/tools/localize/
XMLNode.h 8 struct XMLAttribute
14 static string Find(const vector<XMLAttribute>& list,
XMLHandler.cpp 104 XMLNamespaceMap::AddToAttributes(vector<XMLAttribute>* attrs) const
111 XMLAttribute attr;
123 XMLAttribute::XMLAttribute()
127 XMLAttribute::XMLAttribute(const XMLAttribute& that)
134 XMLAttribute::XMLAttribute(string n, string na, string v)
141 XMLAttribute::~XMLAttribute(
    [all...]
XMLHandler.h 17 struct XMLAttribute
23 XMLAttribute();
24 XMLAttribute(const XMLAttribute& that);
25 XMLAttribute(string ns, string name, string value);
26 ~XMLAttribute();
28 int Compare(const XMLAttribute& that) const;
30 inline bool operator<(const XMLAttribute& that) const { return Compare(that) < 0; }
31 inline bool operator<=(const XMLAttribute& that) const { return Compare(that) <= 0; }
32 inline bool operator==(const XMLAttribute& that) const { return Compare(that) == 0;
    [all...]

Completed in 31 milliseconds