Home
last modified time | relevance | path

Searched refs:RemoveValue (Results 1 – 17 of 17) sorted by relevance

/external/chromium/chrome/browser/prefs/
Dpref_value_map_unittest.cc26 TEST_F(PrefValueMapTest, RemoveValue) { in TEST_F() argument
28 EXPECT_FALSE(map.RemoveValue("key")); in TEST_F()
33 EXPECT_TRUE(map.RemoveValue("key")); in TEST_F()
36 EXPECT_FALSE(map.RemoveValue("key")); in TEST_F()
Dvalue_map_pref_store.cc34 void ValueMapPrefStore::RemoveValue(const std::string& key) { in RemoveValue() function in ValueMapPrefStore
35 if (prefs_.RemoveValue(key)) in RemoveValue()
Doverlay_persistent_pref_store_unittest.cc54 overlay_->RemoveValue(key); in TEST_F()
59 underlay_->RemoveValue(key); in TEST_F()
107 overlay_->RemoveValue(key); in TEST_F()
Doverlay_persistent_pref_store.cc72 void OverlayPersistentPrefStore::RemoveValue(const std::string& key) { in RemoveValue() function in OverlayPersistentPrefStore
73 if (overlay_.RemoveValue(key)) in RemoveValue()
Dtesting_pref_store.cc47 void TestingPrefStore::RemoveValue(const std::string& key) { in RemoveValue() function in TestingPrefStore
48 if (prefs_.RemoveValue(key)) in RemoveValue()
Dvalue_map_pref_store.h42 void RemoveValue(const std::string& key);
Dpref_value_map.h38 bool RemoveValue(const std::string& key);
Doverlay_persistent_pref_store.h43 virtual void RemoveValue(const std::string& key);
Dtesting_pref_store.h37 virtual void RemoveValue(const std::string& key);
Dpref_value_map.cc56 bool PrefValueMap::RemoveValue(const std::string& key) { in RemoveValue() function in PrefValueMap
Dpref_service.cc516 user_pref_store_->RemoveValue(path); in ClearPref()
/external/chromium/chrome/browser/extensions/
Dextension_pref_store.cc36 RemoveValue(key); in OnPrefValueChanged()
Dextension_pref_value_map.cc45 if (prefs->RemoveValue(key)) in RemoveExtensionPref()
/external/chromium/chrome/common/
Dpersistent_pref_store.h58 virtual void RemoveValue(const std::string& key) = 0;
Djson_pref_store.h54 virtual void RemoveValue(const std::string& key);
Djson_pref_store.cc183 void JsonPrefStore::RemoveValue(const std::string& key) { in RemoveValue() function in JsonPrefStore
/external/chromium/chrome/browser/policy/
Dconfiguration_policy_pref_store.cc346 if (prefs_.RemoveValue(map[i].preference_path)) in RemovePreferencesOfMap()