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

/frameworks/base/cmds/statsd/src/config/
H A DConfigKey.cpp17 #include "config/ConfigKey.h"
23 ConfigKey::ConfigKey() { function in class:android::os::statsd::ConfigKey
26 ConfigKey::ConfigKey(const ConfigKey& that) : mId(that.mId), mUid(that.mUid) { function in class:android::os::statsd::ConfigKey
29 ConfigKey::ConfigKey(int uid, const int64_t& id) : mId(id), mUid(uid) { function in class:android::os::statsd::ConfigKey
32 ConfigKey::~ConfigKey() {
[all...]
H A DConfigKey.h33 class ConfigKey { class in namespace:android::os::statsd
35 ConfigKey();
36 explicit ConfigKey(const ConfigKey& that);
37 ConfigKey(int uid, const int64_t& id);
38 ~ConfigKey();
47 inline bool operator<(const ConfigKey& that) const {
57 inline bool operator==(const ConfigKey& that) const {
75 * A hash function for ConfigKey so it can be used for unordered_map/set.
80 using android::os::statsd::ConfigKey;
[all...]
/frameworks/base/tools/aapt2/
H A DResourceTable.cpp160 struct ConfigKey { struct in namespace:aapt
165 bool lt_config_key_ref(const std::unique_ptr<ResourceConfigValue>& lhs, const ConfigKey& rhs) {
175 auto iter = std::lower_bound(values.begin(), values.end(), ConfigKey{&config, product},
188 auto iter = std::lower_bound(values.begin(), values.end(), ConfigKey{&config, product},

Completed in 63 milliseconds