HomeSort by relevance Sort by last modified time
    Searched refs:SetValue (Results 1 - 25 of 301) 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)));
44 EXPECT_TRUE(map.SetValue("key", new StringValue("test")));
55 EXPECT_TRUE(map.SetValue("key", new StringValue("test")));
65 EXPECT_TRUE(reference.SetValue("b", new StringValue("test")));
66 EXPECT_TRUE(reference.SetValue("c", new StringValue("test")));
67 EXPECT_TRUE(reference.SetValue("e", 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
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 224 .SetValue("RESULT_OK", MOJO_RESULT_OK)
225 .SetValue("RESULT_CANCELLED", MOJO_RESULT_CANCELLED)
226 .SetValue("RESULT_UNKNOWN", MOJO_RESULT_UNKNOWN)
227 .SetValue("RESULT_INVALID_ARGUMENT", MOJO_RESULT_INVALID_ARGUMENT)
228 .SetValue("RESULT_DEADLINE_EXCEEDED", MOJO_RESULT_DEADLINE_EXCEEDED)
229 .SetValue("RESULT_NOT_FOUND", MOJO_RESULT_NOT_FOUND)
230 .SetValue("RESULT_ALREADY_EXISTS", MOJO_RESULT_ALREADY_EXISTS)
231 .SetValue("RESULT_PERMISSION_DENIED", MOJO_RESULT_PERMISSION_DENIED)
232 .SetValue("RESULT_RESOURCE_EXHAUSTED", MOJO_RESULT_RESOURCE_EXHAUSTED)
233 .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/chrome/browser/policy/
file_selection_dialogs_policy_handler.cc 27 prefs->SetValue(prefs::kAllowFileSelectionDialogs,
31 prefs->SetValue(prefs::kPromptForDownload,
  /external/chromium_org/chrome/browser/chromeos/
preferences_unittest.cc 36 previous_->SetValue(current_input_method_on_pref);
37 current_->SetValue(input_method_id);
68 previous.SetValue("KeyboardA");
71 current.SetValue("KeyboardB");
  /external/chromium_org/ppapi/thunk/
ppb_scrollbar_api.h 20 virtual void SetValue(uint32_t value) = 0;
  /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", make_scoped_ptr(int_value.DeepCopy()));
27 test_dict.SetValue("two", make_scoped_ptr(string_value.DeepCopy()));
50 test_dict.SetValue("One", make_scoped_ptr(int_value.DeepCopy()));
58 test_dict.SetValue("ONE", make_scoped_ptr(string_value.DeepCopy()));
74 subdict->SetValue("one", make_scoped_ptr(int_value.DeepCopy()));
82 subdict->SetValue("three", make_scoped_ptr(string_value.DeepCopy()));
115 subdict->SetValue("two", make_scoped_ptr(int_value.DeepCopy()));
137 dict_a.SetValue("one", make_scoped_ptr(int_value.DeepCopy()));
139 subdict->SetValue("two", make_scoped_ptr(string_value.DeepCopy()));
142 dict_b.SetValue("four", make_scoped_ptr(string_value.DeepCopy()))
    [all...]
  /external/chromium_org/tools/gn/
scope_unittest.cc 38 setup.scope()->SetValue("v", old_value, &assignment);
40 setup.scope()->SetValue(private_var_name, old_value, &assignment);
46 new_scope.SetValue("v", new_value, &assignment);
59 new_scope.SetValue("v", new_value, &assignment);
77 new_scope.SetValue("v", new_value, &assignment);
150 setup.scope()->SetValue("on_root", Value(&assignment, "on_root"),
155 nested1.SetValue("on_one", Value(&assignment, "on_one"), &assignment);
158 nested2.SetValue("on_one", Value(&assignment, "on_two"), &assignment);
159 nested2.SetValue("on_two", Value(&assignment, "on_two2"), &assignment);
194 root_scope.SetValue(kOnConst, value, &assignment)
    [all...]
value_unittest.cc 34 scope->SetValue("a", Value(NULL, static_cast<int64>(42)), NULL);
35 scope->SetValue("b", Value(NULL, "hello, world"), NULL);
  /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/components/policy/core/browser/
autofill_policy_handler.cc 27 prefs->SetValue(autofill::prefs::kAutofillEnabled,
  /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/libjingle/source/talk/base/
win32regkey.h 112 HRESULT SetValue(const wchar_t* value_name, DWORD value) const;
115 HRESULT SetValue(const wchar_t* value_name, DWORD64 value) const;
118 HRESULT SetValue(const wchar_t* value_name, const wchar_t* value) const;
121 HRESULT SetValue(const wchar_t* value_name,
126 HRESULT SetValue(const wchar_t* value_name,
174 static HRESULT SetValue(const wchar_t* full_key_name,
179 static HRESULT SetValue(const wchar_t* full_key_name,
184 static HRESULT SetValue(const wchar_t* full_key_name,
189 static HRESULT SetValue(const wchar_t* full_key_name,
194 static HRESULT SetValue(const wchar_t* full_key_name
    [all...]
  /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...]
  /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/sonivox/jet_tools/JetCreator/
JetCtrls.py 35 def SetValue(self, val):
38 wx.SpinCtrl.SetValue(self, int(val))
40 wx.SpinCtrl.SetValue(self, val)
42 wx.SpinCtrl.SetValue(self, 0)
49 def SetValue(self, val):
52 wx.SpinCtrl.SetValue(self, int(val) + 1)
54 wx.SpinCtrl.SetValue(self, val + 1)
56 wx.SpinCtrl.SetValue(self, 1)
68 def SetValue(self, val):
75 wx.CheckBox.SetValue(self, val)
    [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,

Completed in 1154 milliseconds

1 2 3 4 5 6 7 8 91011>>