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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/chrome/browser/sync/
about_sync_util.cc 64 void SetValue(const std::string& value);
65 void SetValue(const base::string16& value);
81 void StringSyncStat::SetValue(const std::string& value) {
86 void StringSyncStat::SetValue(const base::string16& value) {
94 void SetValue(bool value);
109 void BoolSyncStat::SetValue(bool value) {
117 void SetValue(int value);
132 void IntSyncStat::SetValue(int value) {
320 client_version.SetValue(GetVersionString());
323 summary_string.SetValue("Sync service does not exist")
    [all...]
sync_policy_handler.cc 27 prefs->SetValue(sync_driver::prefs::kSyncManaged, value->DeepCopy());
  /external/chromium_org/base/prefs/
pref_value_map_unittest.cc 13 TEST(PrefValueMapTest, SetValue) {
19 EXPECT_TRUE(map.SetValue("key", new StringValue("test")));
20 EXPECT_FALSE(map.SetValue("key", new StringValue("test")));
21 EXPECT_TRUE(map.SetValue("key", new StringValue("hi mom!")));
29 ASSERT_TRUE(map.SetValue("key", new FundamentalValue(5)));
42 ASSERT_TRUE(map.SetValue("key", new FundamentalValue(5.5)));
55 EXPECT_TRUE(map.SetValue("key", new StringValue("test")));
66 EXPECT_TRUE(map.SetValue("key", new StringValue("test")));
76 EXPECT_TRUE(reference.SetValue("b", new StringValue("test")));
77 EXPECT_TRUE(reference.SetValue("c", new StringValue("test")))
    [all...]
overlay_user_pref_store_unittest.cc 51 underlay_->SetValue(overlay_key, new FundamentalValue(42));
55 underlay_->SetValue(overlay_key, new FundamentalValue(43));
59 overlay_->SetValue(overlay_key, new FundamentalValue(44));
63 underlay_->SetValue(overlay_key, new FundamentalValue(45));
81 underlay_->SetValue(overlay_key, new FundamentalValue(47));
82 overlay_->SetValue(overlay_key, new FundamentalValue(48));
91 underlay_->SetValue(overlay_key, new FundamentalValue(42));
100 overlay_->SetValue(overlay_key, new FundamentalValue(43));
120 underlay_->SetValue(overlay_key, new DictionaryValue);
149 underlay_->SetValue(regular_key, new FundamentalValue(42))
    [all...]
writeable_pref_store.h 24 virtual void SetValue(const std::string& key, base::Value* value) = 0;
35 // value. SetValue takes care of notifications itself. Note that
39 // Same as SetValue, but doesn't generate notifications. This is used by
41 // into the user pref store. Using SetValue is not an option since existing
value_map_pref_store.cc 31 void ValueMapPrefStore::SetValue(const std::string& key, base::Value* value) {
32 if (prefs_.SetValue(key, value))
52 prefs_.SetValue(key, value);
testing_pref_store.cc 45 void TestingPrefStore::SetValue(const std::string& key, base::Value* value) {
46 if (prefs_.SetValue(key, value)) {
54 if (prefs_.SetValue(key, value))
112 SetValue(key, new base::StringValue(value));
116 SetValue(key, new base::FundamentalValue(value));
120 SetValue(key, new base::FundamentalValue(value));
  /external/chromium_org/mojo/bindings/js/
core.cc 263 .SetValue("RESULT_OK", MOJO_RESULT_OK)
264 .SetValue("RESULT_CANCELLED", MOJO_RESULT_CANCELLED)
265 .SetValue("RESULT_UNKNOWN", MOJO_RESULT_UNKNOWN)
266 .SetValue("RESULT_INVALID_ARGUMENT", MOJO_RESULT_INVALID_ARGUMENT)
267 .SetValue("RESULT_DEADLINE_EXCEEDED", MOJO_RESULT_DEADLINE_EXCEEDED)
268 .SetValue("RESULT_NOT_FOUND", MOJO_RESULT_NOT_FOUND)
269 .SetValue("RESULT_ALREADY_EXISTS", MOJO_RESULT_ALREADY_EXISTS)
270 .SetValue("RESULT_PERMISSION_DENIED", MOJO_RESULT_PERMISSION_DENIED)
271 .SetValue("RESULT_RESOURCE_EXHAUSTED", MOJO_RESULT_RESOURCE_EXHAUSTED)
272 .SetValue("RESULT_FAILED_PRECONDITION", MOJO_RESULT_FAILED_PRECONDITION
    [all...]
  /external/chromium_org/sql/
meta_table.h 75 bool SetValue(const char* key, const std::string& value);
76 bool SetValue(const char* key, int value);
77 bool SetValue(const char* key, int64 value);
  /external/chromium_org/ppapi/thunk/
ppb_scrollbar_api.h 20 virtual void SetValue(uint32_t value) = 0;
ppb_scrollbar_thunk.cc 50 void SetValue(PP_Resource scrollbar, uint32_t value) {
53 enter.object()->SetValue(value);
82 &SetValue,
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_pref_store.cc 93 prefs_->SetValue(prefs::kAllowDeletingBrowserHistory,
95 prefs_->SetValue(prefs::kDefaultSupervisedUserFilteringBehavior,
97 prefs_->SetValue(prefs::kForceSafeSearch, new FundamentalValue(true));
98 prefs_->SetValue(prefs::kHideWebStoreIcon, new FundamentalValue(true));
99 prefs_->SetValue(prefs::kIncognitoModeAvailability,
101 prefs_->SetValue(prefs::kSigninAllowed, new FundamentalValue(false));
109 prefs_->SetValue(entry.pref_name, value->DeepCopy());
  /external/chromium_org/components/policy/core/common/
registry_dict_win_unittest.cc 22 test_dict.SetValue("one", scoped_ptr<base::Value>(int_value.DeepCopy()));
27 test_dict.SetValue("two", scoped_ptr<base::Value>(string_value.DeepCopy()));
50 test_dict.SetValue("One", scoped_ptr<base::Value>(int_value.DeepCopy()));
58 test_dict.SetValue("ONE", scoped_ptr<base::Value>(string_value.DeepCopy()));
74 subdict->SetValue("one", scoped_ptr<base::Value>(int_value.DeepCopy()));
82 subdict->SetValue("three", scoped_ptr<base::Value>(string_value.DeepCopy()));
115 subdict->SetValue("two", scoped_ptr<base::Value>(int_value.DeepCopy()));
137 dict_a.SetValue("one", scoped_ptr<base::Value>(int_value.DeepCopy()));
139 subdict->SetValue("two", scoped_ptr<base::Value>(string_value.DeepCopy()));
142 dict_b.SetValue("four", scoped_ptr<base::Value>(string_value.DeepCopy()))
    [all...]
  /external/lzma/CPP/Windows/
Registry.h 13 LONG SetValue(HKEY parentKey, LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value);
48 LONG SetValue(LPCTSTR valueName, UInt32 value);
49 LONG SetValue(LPCTSTR valueName, bool value);
50 LONG SetValue(LPCTSTR valueName, LPCTSTR value);
51 // LONG SetValue(LPCTSTR valueName, const CSysString &value);
53 LONG SetValue(LPCWSTR name, LPCWSTR value);
54 // LONG SetValue(LPCWSTR name, const UString &value);
57 LONG SetValue(LPCTSTR name, const void *value, UInt32 size);
  /external/chromium_org/tools/gn/
value_unittest.cc 34 scope->SetValue("a", Value(NULL, static_cast<int64>(42)), NULL);
35 scope->SetValue("b", Value(NULL, "hello, world"), NULL);
scope_unittest.cc 40 setup.scope()->SetValue("v", old_value, &assignment);
42 setup.scope()->SetValue(private_var_name, old_value, &assignment);
56 new_scope.SetValue("v", new_value, &assignment);
83 new_scope.SetValue("v", new_value, &assignment);
121 new_scope.SetValue("v", new_value, &assignment);
208 setup.scope()->SetValue("on_root", Value(&assignment, "on_root"),
213 nested1.SetValue("on_one", Value(&assignment, "on_one"), &assignment);
216 nested2.SetValue("on_one", Value(&assignment, "on_two"), &assignment);
217 nested2.SetValue("on_two", Value(&assignment, "on_two2"), &assignment);
252 root_scope.SetValue(kOnConst, value, &assignment)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/
preferences_unittest.cc 35 manager_->previous_->SetValue(current_input_method_on_pref);
36 manager_->current_->SetValue(input_method_id);
83 previous.SetValue("KeyboardA");
86 current.SetValue("KeyboardB");
  /external/chromium_org/android_webview/browser/
aw_pref_store.cc 40 void AwPrefStore::SetValue(const std::string& key, base::Value* value) {
42 if (prefs_.SetValue(key, value))
47 prefs_.SetValue(key, value);
  /external/chromium_org/chrome/service/
service_process_prefs.cc 42 prefs_->SetValue(key, new base::StringValue(value));
56 prefs_->SetValue(key, new base::FundamentalValue(value));
70 prefs_->SetValue(key, new base::FundamentalValue(value));
93 void ServiceProcessPrefs::SetValue(const std::string& key, base::Value* value) {
94 prefs_->SetValue(key, value);
  /external/chromium_org/third_party/webrtc/base/
win32regkey.h 95 HRESULT SetValue(const wchar_t* value_name, DWORD value) const;
98 HRESULT SetValue(const wchar_t* value_name, DWORD64 value) const;
101 HRESULT SetValue(const wchar_t* value_name, const wchar_t* value) const;
104 HRESULT SetValue(const wchar_t* value_name,
109 HRESULT SetValue(const wchar_t* value_name,
157 static HRESULT SetValue(const wchar_t* full_key_name,
162 static HRESULT SetValue(const wchar_t* full_key_name,
167 static HRESULT SetValue(const wchar_t* full_key_name,
172 static HRESULT SetValue(const wchar_t* full_key_name,
177 static HRESULT SetValue(const wchar_t* full_key_name
    [all...]
  /external/chromium_org/chrome/browser/prefs/
leveldb_pref_store_unittest.cc 76 pref_store_->SetValue(key, new base::FundamentalValue(5));
86 pref_store_->SetValue(key, new base::FundamentalValue(5));
106 pref_store->SetValue(key, new base::FundamentalValue(5));
134 pref_store_->SetValue(key, orig_value);
160 pref_store_->SetValue(key, new base::FundamentalValue(5));
175 pref_store_->SetValue(key, new base::FundamentalValue(5));
191 pref_store_->SetValue(key, new base::FundamentalValue(5));
255 pref_store_->SetValue("boolean", new base::FundamentalValue(false));
256 pref_store_->SetValue("integer", new base::FundamentalValue(10));
257 pref_store_->SetValue("double", new base::FundamentalValue(10.3))
    [all...]
command_line_pref_store.cc 107 SetValue(string_switch_map_[i].preference_path,
115 SetValue(path_switch_map_[i].preference_path,
132 SetValue(integer_switch_map_[i].preference_path,
139 SetValue(boolean_switch_map_[i].preference_path,
147 SetValue(prefs::kProxy,
152 SetValue(prefs::kProxy,
155 SetValue(prefs::kProxy,
162 SetValue(prefs::kProxy,
179 SetValue(prefs::kCipherSuiteBlacklist, list_value);
185 SetValue(prefs::kBackgroundModeEnabled, new base::FundamentalValue(false))
    [all...]
  /external/chromium_org/chrome/browser/chromeos/policy/
configuration_policy_handler_chromeos.cc 256 prefs->SetValue(pref_path_, network_configs.release());
331 prefs->SetValue(pref_path(), pinned_apps_list);
349 prefs->SetValue(prefs::kAccessibilityScreenMagnifierEnabled,
351 prefs->SetValue(prefs::kAccessibilityScreenMagnifierType,
387 prefs->SetValue(prefs::kPowerAcIdleAction, value->DeepCopy());
389 prefs->SetValue(prefs::kPowerBatteryIdleAction, value->DeepCopy());
420 prefs->SetValue(prefs::kPowerAcScreenDimDelayMs, value.release());
423 prefs->SetValue(prefs::kPowerAcScreenOffDelayMs, value.release());
426 prefs->SetValue(prefs::kPowerAcIdleWarningDelayMs, value.release());
429 prefs->SetValue(prefs::kPowerAcIdleDelayMs, value.release())
    [all...]
  /external/chromium_org/chrome/browser/download/
download_dir_policy_handler.cc 101 prefs->SetValue(prefs::kDownloadDefaultDirectory,
107 prefs->SetValue(prefs::kPromptForDownload,
111 prefs->SetValue(prefs::kDisableDrive,
  /external/chromium_org/chrome/browser/content_settings/
content_settings_mock_provider.cc 34 value_map_.SetValue(requesting_url_pattern,

Completed in 778 milliseconds

1 2 3 4 5 6 7 8 91011