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

1 2 3 4 5 6

  /external/lzma/CPP/Windows/
Registry.h 12 LONG SetValue(HKEY parentKey, LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value);
47 LONG SetValue(LPCTSTR valueName, UInt32 value) throw();
48 LONG SetValue(LPCTSTR valueName, bool value) throw();
49 LONG SetValue(LPCTSTR valueName, LPCTSTR value) throw();
50 // LONG SetValue(LPCTSTR valueName, const CSysString &value);
52 LONG SetValue(LPCWSTR name, LPCWSTR value);
53 // LONG SetValue(LPCWSTR name, const UString &value);
56 LONG SetValue(LPCTSTR name, const void *value, UInt32 size) throw();
Registry.cpp 116 LONG CKey::SetValue(LPCTSTR name, UInt32 value) throw()
123 LONG CKey::SetValue(LPCTSTR name, bool value) throw()
125 return SetValue(name, BoolToUINT32(value));
128 LONG CKey::SetValue(LPCTSTR name, LPCTSTR value) throw()
137 LONG CKey::SetValue(LPCTSTR name, const CSysString &value)
148 LONG CKey::SetValue(LPCWSTR name, LPCWSTR value)
155 return SetValue(name == 0 ? 0 : (LPCSTR)GetSystemString(name),
162 LONG CKey::SetValue(LPCTSTR name, const void *value, UInt32 size) throw()
170 LONG SetValue(HKEY parentKey, LPCTSTR keyName, LPCTSTR valueName, LPCTSTR value)
176 res = key.SetValue(valueName, value);
    [all...]
  /external/webrtc/webrtc/base/
win32regkey.h 96 HRESULT SetValue(const wchar_t* value_name, DWORD value) const;
99 HRESULT SetValue(const wchar_t* value_name, DWORD64 value) const;
102 HRESULT SetValue(const wchar_t* value_name, const wchar_t* value) const;
105 HRESULT SetValue(const wchar_t* value_name,
110 HRESULT SetValue(const wchar_t* value_name,
158 static HRESULT SetValue(const wchar_t* full_key_name,
163 static HRESULT SetValue(const wchar_t* full_key_name,
168 static HRESULT SetValue(const wchar_t* full_key_name,
173 static HRESULT SetValue(const wchar_t* full_key_name,
178 static HRESULT SetValue(const wchar_t* full_key_name
    [all...]
win32regkey_unittest.cc 204 EXPECT_SUCCEEDED(r_key.SetValue(kValNameInt, kIntVal));
214 EXPECT_SUCCEEDED(r_key.SetValue(kValNameInt, kIntVal2));
227 EXPECT_SUCCEEDED(r_key.SetValue(kValNameInt64, kIntVal64));
243 EXPECT_SUCCEEDED(r_key.SetValue(kValNameStr, kStrVal));
254 EXPECT_SUCCEEDED(r_key.SetValue(kValNameStr, kStrVal2));
268 EXPECT_SUCCEEDED(r_key.SetValue(kValNameBinary,
281 EXPECT_SUCCEEDED(r_key.SetValue(kValNameBinary,
299 EXPECT_SUCCEEDED(r_key.SetValue(kValNameInt, kIntVal));
302 EXPECT_SUCCEEDED(r_key.SetValue(kValNameInt64, kIntVal64));
305 EXPECT_SUCCEEDED(r_key.SetValue(kValNameStr, kStrVal))
    [all...]
  /external/libbrillo/brillo/
flag_helper.h 78 virtual bool SetValue(const std::string& value) = 0;
97 bool SetValue(const std::string& value) override;
113 bool SetValue(const std::string& value) override;
128 bool SetValue(const std::string& value) override;
143 bool SetValue(const std::string& value) override;
158 bool SetValue(const std::string& value) override;
173 bool SetValue(const std::string& value) override;
flag_helper.cc 35 bool SetValue(const std::string& /* value */) override { return true; };
50 bool BoolFlag::SetValue(const std::string& value) {
79 bool Int32Flag::SetValue(const std::string& value) {
95 bool Int64Flag::SetValue(const std::string& value) {
111 bool UInt64Flag::SetValue(const std::string& value) {
127 bool DoubleFlag::SetValue(const std::string& value) {
143 bool StringFlag::SetValue(const std::string& value) {
220 if (!flag->SetValue(value)) {
  /system/update_engine/update_manager/
real_shill_provider.cc 125 var_is_connected_.SetValue(is_connected);
126 var_conn_last_changed_.SetValue(clock_->GetWallclockTime());
159 var_conn_tethering_.SetValue(
178 var_conn_type_.SetValue(ConnectionType::kUnknown);
180 var_conn_type_.SetValue(
184 var_conn_type_.SetValue(ParseConnectionType(type_str));
generic_variables_unittest.cc 172 var.SetValue(5);
202 var.SetValue(5);
207 var.SetValue(5);
real_device_policy_provider.cc 107 var->SetValue(new_value);
120 var->SetValue(new_value);
167 var_device_policy_is_loaded_.SetValue(
  /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...]
JetDialogs.py 65 self.ctrls[Text].SetValue(Lst[0])
90 self.ctrls[Text].SetValue(Lst)
134 def SetValue(self, fld, val):
136 self.ctrls[fld].SetValue(val)
147 self.je.ctrls[JetDefs.F_JFILE].SetValue(fileList[0])
160 self.je.ctrls[JetDefs.F_JFILE].SetValue(sValue)
165 self.je.ctrls[JetDefs.F_JFILE].SetValue(sValue)
209 def SetValue(self, fld, val):
210 self.je.ctrls[fld].SetValue(val)
231 def SetValue(self, fld, val):
    [all...]
JetCreator.py 400 self.log.SetValue("")
404 self.log.SetValue("%s %.2f Seconds" % (self.currentSegmentName, iLength / 1000.00))
406 self.log.SetValue("%s" % (self.currentSegmentName))
473 dlg.SetValue(JetDefs.F_SEGNAME, segment.segname)
474 dlg.SetValue(JetDefs.F_MUTEFLAGS, segment.mute_flags)
475 dlg.SetValue(JetDefs.F_MIDIFILE, segment.filename)
476 dlg.SetValue(JetDefs.F_DLSFILE, segment.dlsfile)
477 dlg.SetValue(JetDefs.F_START, segment.start)
478 dlg.SetValue(JetDefs.F_END, segment.end)
479 dlg.SetValue(JetDefs.F_QUANTIZE, segment.quantize)
    [all...]
  /external/libchrome/base/trace_event/
trace_event_argument.h 38 void SetValue(const char* name, const TracedValue& value);
68 // SetValue(TracedValue) API. crbug.com/495628.
69 void SetValue(const char* name, scoped_ptr<base::Value> value);
trace_event_argument_unittest.cc 118 value->SetValue("inner_list", std::move(list_value));
142 dict_value->SetValue("e", *nested_dict_value);
memory_allocator_dump.cc 92 value->SetValue("attrs", *attributes_);
  /external/v8/testing/
gmock-support.h 24 void SetValue(const T& value) {
50 capture_->SetValue(value);
  /external/libchrome/base/prefs/
writeable_pref_store.h 38 virtual void SetValue(const std::string& key,
51 // value. SetValue takes care of notifications itself. Note that
56 // Same as SetValue, but doesn't generate notifications. This is used by
58 // into the user pref store. Using SetValue is not an option since existing
  /external/v8/src/
address-map.cc 30 SetValue(LookupEntry(map_, heap_object, true), i);
atomic-utils.h 30 V8_INLINE void SetValue(T new_value) {
35 SetValue(value);
66 V8_INLINE void SetValue(T new_value) {
address-map.h 17 static void SetValue(HashMap::Entry* entry, uint32_t v) {
164 SetValue(entry, b.bitfield());
  /system/update_engine/common/
fake_prefs.cc 69 SetValue(key, value);
78 SetValue(key, value);
87 SetValue(key, value);
128 void FakePrefs::SetValue(const string& key, const T& value) {
prefs_unittest.cc 52 bool SetValue(const string& key, const string& value) {
81 ASSERT_TRUE(SetValue(kKey, test_data));
133 ASSERT_TRUE(SetValue(kKey, " \n 25 \t "));
140 ASSERT_TRUE(SetValue(kKey, "30a"));
146 ASSERT_TRUE(SetValue(kKey, base::StringPrintf(
154 ASSERT_TRUE(SetValue(kKey, base::StringPrintf(
162 ASSERT_TRUE(SetValue(kKey, " \t -100 \n "));
203 ASSERT_TRUE(SetValue(kKey, " \n false \t "));
211 ASSERT_TRUE(SetValue(kKey, " \t true \n "));
219 ASSERT_TRUE(SetValue(kKey, "1"))
    [all...]
  /external/v8/test/unittests/
atomic-utils-unittest.cc 36 TEST(AtomicNumber, SetValue) {
38 a.SetValue(-1);
87 TEST(AtomicValue, SetValue) {
89 a.SetValue(kC);
98 a.SetValue(&a);
  /external/libbrillo/brillo/dbus/
exported_property_set_unittest.cc 83 path_prop_.SetValue(kTestObjectPathInit);
197 p_->bool_prop_.SetValue(true);
198 p_->uint8_prop_.SetValue(1);
199 p_->int16_prop_.SetValue(1);
200 p_->uint16_prop_.SetValue(1);
201 p_->int32_prop_.SetValue(1);
202 p_->uint32_prop_.SetValue(1);
203 p_->int64_prop_.SetValue(1);
204 p_->uint64_prop_.SetValue(1);
205 p_->double_prop_.SetValue(1.0)
    [all...]
exported_property_set.h 77 virtual bool SetValue(brillo::ErrorPtr* error,
173 void SetValue(const T& new_value) {
190 bool SetValue(brillo::ErrorPtr* error,

Completed in 286 milliseconds

1 2 3 4 5 6