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

1 2

  /external/chromium/chrome/browser/prefs/
pref_value_map.cc 40 bool PrefValueMap::SetValue(const std::string& key, Value* value) {
102 SetValue(key, Value::CreateStringValue(value));
value_map_pref_store.cc 29 void ValueMapPrefStore::SetValue(const std::string& key, Value* value) {
30 if (prefs_.SetValue(key, value))
overlay_persistent_pref_store.cc 54 overlay_.SetValue(key, *result);
61 void OverlayPersistentPrefStore::SetValue(const std::string& key,
63 if (overlay_.SetValue(key, value))
69 overlay_.SetValue(key, value);
testing_pref_store.cc 38 void TestingPrefStore::SetValue(const std::string& key, Value* value) {
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));
pref_member.h 18 // update if either the pref changes or if my_string_.SetValue is called.
21 // notify MyClass of changes. Note that if you use SetValue(), the observer
187 void SetValue(const ValueType& value) {
198 SetValue(value);
  /external/chromium/chrome/browser/ui/views/
generic_info_view.cc 37 void GenericInfoView::SetValue(int row, const string16& name) {
  /external/chromium/webkit/glue/
cpp_binding_example.cc 19 virtual bool SetValue(const CppVariant& value) {
cpp_bound_class.cc 36 virtual bool SetValue(const CppVariant& value) {
55 virtual bool SetValue(const CppVariant& value) {
253 return (*callback).second->SetValue(cpp_value);
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tools.pas 94 procedure SetValue(const Value: String);
97 property Value: String read GetValue write SetValue;
110 procedure SetValue(const Value: String);
451 procedure TANTLRString.SetValue(const Value: String);
  /external/chromium/app/sql/
meta_table.cc 52 bool MetaTable::SetValue(const char* key, const std::string& value) {
69 bool MetaTable::SetValue(const char* key, int value) {
87 bool MetaTable::SetValue(const char* key, int64 value) {
105 SetValue(kVersionKey, version);
116 SetValue(kCompatibleVersionKey, version);
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 40 static void SetValue(Value *V, GenericValue Val, ExecutionContext &SF) {
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(&I, Result, SF)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
mutable-fst.h 119 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); }
vector-fst.h 743 virtual void SetValue(const A &arc) {
  /external/chromium/chrome/browser/
accessibility_events.h 166 void SetValue(int item_index, const std::string& value) {
196 void SetValue(
229 void SetValue(int item_index, std::string value) {
  /external/chromium/chrome/common/extensions/
extension_action.h 61 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) {
  /external/chromium/chrome/common/
json_pref_store.cc 163 void JsonPrefStore::SetValue(const std::string& key, Value* value) {
  /external/llvm/lib/TableGen/
TGParser.h 105 bool SetValue(Record *TheRec, SMLoc Loc, Init *ValName,
107 bool SetValue(Record *TheRec, SMLoc Loc, const std::string &ValName,
109 return SetValue(TheRec, Loc, StringInit::get(ValName), BitList, V);
  /external/openfst/src/include/fst/
tuple-weight.h 131 void SetValue(size_t i, const W &w) { values_[i] = w; }
159 w.SetValue(i, r);
165 w.SetValue(n - 1, r);
214 w.SetValue(i, r);
233 w.SetValue(n - 1, r);
float-weight.h 93 void SetValue(const T &f) { value_ = f; }
mutable-fst.h 163 void SetValue(const A &arc) { SetValue_(arc); } // Set current arc's content
182 // aiter.SetValue(arc);
204 void SetValue(const Arc &a) { data_.base->SetValue(a); }
vector-fst.h 647 void SetValue(const A &arc) {
708 virtual void SetValue_(const A &a) { SetValue(a); }
  /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...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Tools.Tests.pas 113 procedure SetValue(const V: String);
114 property Value: String read GetValue write SetValue;
120 procedure SetValue(const V: String);
129 procedure TFoo.SetValue(const V: String);
166 FIANTLRString.SetValue(Value);
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
stun.h 236 void SetValue(uint32 bits) { bits_ = bits; }

Completed in 483 milliseconds

1 2