Searched defs:AaptLocaleValue (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/tools/aapt/
H A DAaptAssets.h61 struct AaptLocaleValue { struct
67 AaptLocaleValue() { function in struct:AaptLocaleValue
68 memset(this, 0, sizeof(AaptLocaleValue));
71 // Initialize this AaptLocaleValue from a config string.
76 // Initialize this AaptLocaleValue from a ResTable_config.
83 int compare(const AaptLocaleValue& other) const {
84 return memcmp(this, &other, sizeof(AaptLocaleValue));
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
[all...]

Completed in 25 milliseconds