Searched refs:SetValue (Results 1 - 25 of 114) sorted by relevance

12345

/external/chromium/chrome/browser/prefs/
H A Dpref_value_map_unittest.cc12 TEST_F(PrefValueMapTest, SetValue) {
18 EXPECT_TRUE(map.SetValue("key", Value::CreateStringValue("test")));
19 EXPECT_FALSE(map.SetValue("key", Value::CreateStringValue("test")));
20 EXPECT_TRUE(map.SetValue("key", Value::CreateStringValue("hi mom!")));
30 EXPECT_TRUE(map.SetValue("key", Value::CreateStringValue("test")));
41 EXPECT_TRUE(map.SetValue("key", Value::CreateStringValue("test")));
51 EXPECT_TRUE(reference.SetValue("b", Value::CreateStringValue("test")));
52 EXPECT_TRUE(reference.SetValue("c", Value::CreateStringValue("test")));
53 EXPECT_TRUE(reference.SetValue("e", Value::CreateStringValue("test")));
65 EXPECT_TRUE(check.SetValue("
[all...]
H A Dcommand_line_pref_store.cc53 SetValue(string_switch_map_[i].preference_path, value);
61 SetValue(boolean_switch_map_[i].preference_path, value);
81 SetValue(prefs::kProxy,
86 SetValue(prefs::kProxy,
89 SetValue(prefs::kProxy,
96 SetValue(prefs::kProxy,
H A Ddefault_pref_store.cc13 SetValue(key, value);
H A Dtesting_pref_store.cc38 void TestingPrefStore::SetValue(const std::string& key, Value* value) { function in class:TestingPrefStore
39 if (prefs_.SetValue(key, value))
44 prefs_.SetValue(key, value);
85 SetValue(key, Value::CreateStringValue(value));
89 SetValue(key, Value::CreateIntegerValue(value));
93 SetValue(key, Value::CreateBooleanValue(value));
H A Doverlay_persistent_pref_store.cc54 overlay_.SetValue(key, *result);
61 void OverlayPersistentPrefStore::SetValue(const std::string& key, function in class:OverlayPersistentPrefStore
63 if (overlay_.SetValue(key, value))
69 overlay_.SetValue(key, value);
H A Doverlay_persistent_pref_store_unittest.cc34 underlay_->SetValue(key, Value::CreateIntegerValue(42));
39 underlay_->SetValue(key, Value::CreateIntegerValue(43));
44 overlay_->SetValue(key, Value::CreateIntegerValue(44));
49 underlay_->SetValue(key, Value::CreateIntegerValue(45));
71 underlay_->SetValue(key, Value::CreateIntegerValue(47));
72 overlay_->SetValue(key, Value::CreateIntegerValue(48));
82 underlay_->SetValue(key, Value::CreateIntegerValue(42));
95 overlay_->SetValue(key, Value::CreateIntegerValue(43));
123 underlay_->SetValue(key, new DictionaryValue);
H A Dvalue_map_pref_store.cc29 void ValueMapPrefStore::SetValue(const std::string& key, Value* value) { function in class:ValueMapPrefStore
30 if (prefs_.SetValue(key, value))
H A Dvalue_map_pref_store.h38 void SetValue(const std::string& key, Value* value);
H A Dpref_member_unittest.cc111 boolean.SetValue(true);
132 integer.SetValue(5);
153 double_member.SetValue(1.0);
174 string.SetValue("foo");
206 list.SetValue(list_value_numbers.get());
232 pref1.SetValue(2.3);
235 pref2.SetValue(3.5);
250 // Calling SetValue should not fire the observer.
251 test_obj.str_.SetValue("hello");
H A Doverlay_persistent_pref_store.h41 virtual void SetValue(const std::string& key, Value* value);
H A Dpref_value_map.h34 bool SetValue(const std::string& key, Value* value);
/external/chromium/chrome/browser/ui/views/
H A Ddatabase_open_info_view.cc36 SetValue(row++, url);
37 SetValue(row++, database_name);
38 SetValue(row++, display_name);
39 SetValue(row++, size);
H A Dappcache_info_view.cc36 SetValue(row++, manifest_url);
37 SetValue(row++, size);
38 SetValue(row++, creation_date);
39 SetValue(row++, last_access_date);
H A Dgeneric_info_view.h39 void SetValue(int row, const string16& value);
43 SetValue(i, kEmptyString);
H A Dgeneric_info_view_unittest.cc46 view1->SetValue(0, kValue);
/external/chromium/app/sql/
H A Dmeta_table.h60 bool SetValue(const char* key, const std::string& value);
61 bool SetValue(const char* key, int value);
62 bool SetValue(const char* key, int64 value);
H A Dmeta_table.cc52 bool MetaTable::SetValue(const char* key, const std::string& value) { function in class:sql::MetaTable
69 bool MetaTable::SetValue(const char* key, int value) { function in class:sql::MetaTable
87 bool MetaTable::SetValue(const char* key, int64 value) { function in class:sql::MetaTable
105 SetValue(kVersionKey, version);
116 SetValue(kCompatibleVersionKey, version);
/external/chromium/chrome/common/extensions/
H A Dextension_action.h61 SetValue(&title_, tab_id, title);
102 SetValue(&badge_text_, tab_id, text);
111 SetValue(&badge_text_color_, tab_id, text_color);
121 SetValue(&badge_background_color_, tab_id, color);
131 SetValue(&visible_, tab_id, value);
154 void SetValue(std::map<int, T>* map, int tab_id, const T& val) { function in class:ExtensionAction
/external/sonivox/jet_tools/JetCreator/
H A DJetCtrls.py35 def SetValue(self, val): member in class:JetSpin
38 wx.SpinCtrl.SetValue(self, int(val))
40 wx.SpinCtrl.SetValue(self, val)
42 wx.SpinCtrl.SetValue(self, 0)
49 def SetValue(self, val): member in class:JetSpinOneBased
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): member in class:JetCheckBox
75 wx.CheckBox.SetValue(sel
86 def SetValue(self, val): member in class:JetRadioButton
217 def SetValue(self, muteFlags): member in class:JetTrackCtrl
280 def SetValue(self, val): member in class:JetFileCombo
339 def SetValue(self, val): member in class:JetFileText
468 def SetValue(self, mbt): member in class:TimeCtrl
[all...]
H A DJetDialogs.py65 self.ctrls[Text].SetValue(Lst[0])
90 self.ctrls[Text].SetValue(Lst)
134 def SetValue(self, fld, val): member in class:JetEdit
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): member in class:JetPreferences
210 self.je.ctrls[fld].SetValue(val)
231 def SetValue(sel member in class:JetAbout
250 def SetValue(self, fld, val): member in class:JetPropertiesDialog
342 def SetValue(self, fld, val): member in class:SegEdit
655 def SetValue(self, fld, val): member in class:EventEdit
871 def SetValue(self, fld, val): member in class:JetReplicate
939 def SetValue(self, fld, val): member in class:JetMove
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_pref_store.cc34 SetValue(key, winner->DeepCopy());
/external/chromium/chrome/common/
H A Dpersistent_pref_store.h43 // value. SetValue takes care of notifications itself. Note that
49 virtual void SetValue(const std::string& key, Value* value) = 0;
51 // Same as SetValue, but doesn't generate notifications. This is used by
53 // into the user pref store. Using SetValue is not an option since existing
/external/openfst/src/include/fst/
H A Dpower-weight.h103 w.SetValue(i, Plus(w1.Value(i), w2.Value(i)));
113 w.SetValue(i, Times(w1.Value(i), w2.Value(i)));
124 w.SetValue(i, Divide(w1.Value(i), w2.Value(i), type));
133 sw.SetValue(i, Times(s, w.Value(i)));
142 ws.SetValue(i, Times(w.Value(i), s));
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dmutable-fst.h119 virtual void SetValue(const A &arc) = 0; // Set current arc's contents
135 // aiter.SetValue(arc);
155 void SetValue(const Arc &a) { data_.base->SetValue(a); } function in class:fst::MutableArcIterator
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp40 static void SetValue(Value *V, GenericValue Val, ExecutionContext &SF) { function
280 SetValue(&I, R, SF);
474 SetValue(&I, R, SF);
549 SetValue(&I, R, SF);
563 SetValue(&I, R, SF);
606 SetValue(I, Result, CallingSF);
734 SetValue(PN, ResultValues[i], SF);
765 SetValue(&I, Result, SF);
815 SetValue(&I, executeGEPOperation(I.getPointerOperand(),
825 SetValue(
[all...]

Completed in 277 milliseconds

12345