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

/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.
81 int compare(const AaptLocaleValue& other) const {
82 return memcmp(this, &other, sizeof(AaptLocaleValue));
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
[all...]

Completed in 57 milliseconds