Lines Matching defs:key

43 PreferencesValue PreferencesBase::Get(const std::string &key, const PreferencesValue &defValue)  in Get()
48 int PreferencesBase::Put(const std::string &key, const PreferencesValue &value) in Put()
53 int PreferencesBase::GetInt(const std::string &key, const int &defValue = {}) in GetInt()
62 std::string PreferencesBase::GetString(const std::string &key, const std::string &defValue = {}) in GetString()
70 bool PreferencesBase::GetBool(const std::string &key, const bool &defValue = {}) in GetBool()
78 float PreferencesBase::GetFloat(const std::string &key, const float &defValue = {}) in GetFloat()
87 double PreferencesBase::GetDouble(const std::string &key, const double &defValue = {}) in GetDouble()
96 int64_t PreferencesBase::GetLong(const std::string &key, const int64_t &defValue = {}) in GetLong()
110 bool PreferencesBase::HasKey(const std::string &key) in HasKey()
115 int PreferencesBase::PutInt(const std::string &key, int value) in PutInt()
120 int PreferencesBase::PutString(const std::string &key, const std::string &value) in PutString()
125 int PreferencesBase::PutBool(const std::string &key, bool value) in PutBool()
130 int PreferencesBase::PutLong(const std::string &key, int64_t value) in PutLong()
135 int PreferencesBase::PutFloat(const std::string &key, float value) in PutFloat()
139 int PreferencesBase::PutDouble(const std::string &key, double value) in PutDouble()
143 int PreferencesBase::Delete(const std::string &key) in Delete()
193 for (const auto &key : keys) { in UnRegisterDataObserver() local
222 std::pair<int, PreferencesValue> PreferencesBase::GetValue(const std::string &key, const Preference… in GetValue()
282 Uri PreferencesBase::MakeUri(const std::string &key) in MakeUri()