HomeSort by relevance Sort by last modified time
    Searched refs:GetMutableValue (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/base/prefs/
writeable_pref_store.h 30 virtual bool GetMutableValue(const std::string& key,
34 // if one retrieves a list or dictionary with GetMutableValue and change its
value_map_pref_store.h 33 virtual bool GetMutableValue(const std::string& key,
overlay_user_pref_store.cc 47 bool OverlayUserPrefStore::GetMutableValue(const std::string& key,
50 return underlay_->GetMutableValue(GetUnderlayKey(key), result);
57 if (!underlay_->GetMutableValue(GetUnderlayKey(key), &underlay_value))
value_map_pref_store.cc 41 bool ValueMapPrefStore::GetMutableValue(const std::string& key,
overlay_user_pref_store.h 41 virtual bool GetMutableValue(const std::string& key,
testing_pref_store.h 32 virtual bool GetMutableValue(const std::string& key,
overlay_user_pref_store_unittest.cc 118 // Check that GetMutableValue does not return the dictionary of the underlay.
123 EXPECT_TRUE(overlay_->GetMutableValue(overlay_key, &modify));
129 EXPECT_TRUE(underlay_->GetMutableValue(overlay_key, &original_in_underlay));
135 EXPECT_TRUE(overlay_->GetMutableValue(overlay_key, &modified));
json_pref_store.h 77 virtual bool GetMutableValue(const std::string& key,
testing_pref_store.cc 24 bool TestingPrefStore::GetMutableValue(const std::string& key,
pref_service.cc 266 if (!user_pref_store_->GetMutableValue(path, &value))
413 NOTREACHED() << "Wrong type for GetMutableValue: " << path;
420 if (!user_pref_store_->GetMutableValue(path, &value) ||
json_pref_store.cc 196 bool JsonPrefStore::GetMutableValue(const std::string& key,
  /external/chromium_org/tools/gn/
template.cc 72 Value* invoker_value = template_scope.GetMutableValue(kInvoker, false);
99 invoker_value = template_scope.GetMutableValue(kInvoker, false);
scope_unittest.cc 233 TEST(Scope, GetMutableValue) {
265 EXPECT_FALSE(mutable_scope2.GetMutableValue(kOnConst, true));
268 Value* mutable1_result = mutable_scope2.GetMutableValue(kOnMutable1, false);
276 mutable1_result = mutable_scope2.GetMutableValue(kOnMutable1, true);
282 Value* mutable2_result = mutable_scope2.GetMutableValue(kOnMutable2, true);
parse_tree_unittest.cc 44 setup.scope()->GetMutableValue("a", false)->scope_value()->SetValue(
scope.h 149 Value* GetMutableValue(const base::StringPiece& ident, bool counts_as_used);
scope.cc 82 Value* Scope::GetMutableValue(const base::StringPiece& ident,
94 return mutable_containing_->GetMutableValue(ident, counts_as_used);
  /external/chromium_org/android_webview/browser/
aw_pref_store.cc 19 bool AwPrefStore::GetMutableValue(const std::string& key,
aw_pref_store.h 33 virtual bool GetMutableValue(const std::string& key,
  /external/chromium_org/chrome/browser/prefs/
browser_ui_prefs_migrator.cc 29 if (!pref_store_->GetMutableValue("browser", &browser_value))
leveldb_pref_store.h 48 virtual bool GetMutableValue(const std::string& key,
browser_ui_prefs_migrator_unittest.cc 45 virtual bool GetMutableValue(const std::string& key,
leveldb_pref_store_unittest.cc 128 TEST_F(LevelDBPrefStoreTest, GetMutableValue) {
137 EXPECT_TRUE(pref_store_->GetMutableValue(key, &actual_value));
leveldb_pref_store.cc 220 // Callers of GetMutableValue have to also call ReportValueChanged.
221 bool LevelDBPrefStore::GetMutableValue(const std::string& key,
  /external/chromium_org/chrome/browser/prefs/tracked/
segregated_pref_store.cc 93 bool SegregatedPrefStore::GetMutableValue(const std::string& key,
95 return StoreForKey(key)->GetMutableValue(key, result);
segregated_pref_store.h 59 virtual bool GetMutableValue(const std::string& key,

Completed in 786 milliseconds

1 2