Lines Matching refs:AaptLocaleValue
61 struct AaptLocaleValue { struct
67 AaptLocaleValue() { in AaptLocaleValue() argument
68 memset(this, 0, sizeof(AaptLocaleValue)); in AaptLocaleValue()
81 int compare(const AaptLocaleValue& other) const { in compare() argument
82 return memcmp(this, &other, sizeof(AaptLocaleValue)); in compare()
85 inline bool operator<(const AaptLocaleValue& o) const { return compare(o) < 0; }
86 inline bool operator<=(const AaptLocaleValue& o) const { return compare(o) <= 0; }
87 inline bool operator==(const AaptLocaleValue& o) const { return compare(o) == 0; }
88 inline bool operator!=(const AaptLocaleValue& o) const { return compare(o) != 0; }
89 inline bool operator>=(const AaptLocaleValue& o) const { return compare(o) >= 0; }
90 inline bool operator>(const AaptLocaleValue& o) const { return compare(o) > 0; }