Home
last modified time | relevance | path

Searched refs:out_value (Results 1 – 18 of 18) sorted by relevance

/external/chromium/base/
Dvalues.cc102 bool Value::GetAsBoolean(bool* out_value) const { in GetAsBoolean()
106 bool Value::GetAsInteger(int* out_value) const { in GetAsInteger()
110 bool Value::GetAsDouble(double* out_value) const { in GetAsDouble()
114 bool Value::GetAsString(std::string* out_value) const { in GetAsString()
118 bool Value::GetAsString(string16* out_value) const { in GetAsString()
122 bool Value::GetAsList(ListValue** out_value) { in GetAsList() argument
167 bool FundamentalValue::GetAsBoolean(bool* out_value) const { in GetAsBoolean()
168 if (out_value && IsType(TYPE_BOOLEAN)) in GetAsBoolean()
169 *out_value = boolean_value_; in GetAsBoolean()
173 bool FundamentalValue::GetAsInteger(int* out_value) const { in GetAsInteger()
[all …]
Dvalues.h91 virtual bool GetAsBoolean(bool* out_value) const;
92 virtual bool GetAsInteger(int* out_value) const;
93 virtual bool GetAsDouble(double* out_value) const;
94 virtual bool GetAsString(std::string* out_value) const;
95 virtual bool GetAsString(string16* out_value) const;
96 virtual bool GetAsList(ListValue** out_value);
134 virtual bool GetAsBoolean(bool* out_value) const;
135 virtual bool GetAsInteger(int* out_value) const;
136 virtual bool GetAsDouble(double* out_value) const;
161 virtual bool GetAsString(std::string* out_value) const;
[all …]
/external/chromium/chrome/browser/prefs/
Dproxy_prefs.cc37 bool IntToProxyMode(int in_value, ProxyMode* out_value) { in IntToProxyMode() argument
38 DCHECK(out_value); in IntToProxyMode()
41 *out_value = static_cast<ProxyMode>(in_value); in IntToProxyMode()
46 bool StringToProxyMode(const std::string& in_value, ProxyMode* out_value) { in StringToProxyMode() argument
47 DCHECK(out_value); in StringToProxyMode()
50 return IntToProxyMode(i, out_value); in StringToProxyMode()
Dpref_value_store.cc105 const Value** out_value) const { in GetValue()
106 *out_value = NULL; in GetValue()
111 out_value)) { in GetValue()
112 if (!(*out_value)->IsType(type)) { in GetValue()
114 << " but got " << (*out_value)->GetType() in GetValue()
210 const Value** out_value) const { in GetValueFromStore()
215 switch (store->GetValue(name, out_value)) { in GetValueFromStore()
218 if (!store || store->GetValue(name, out_value) != PrefStore::READ_OK) { in GetValueFromStore()
219 *out_value = NULL; in GetValueFromStore()
231 *out_value = NULL; in GetValueFromStore()
Dproxy_prefs.h47 bool IntToProxyMode(int in_value, ProxyMode* out_value);
49 ProxyMode* out_value);
Dpref_value_store.h81 const Value** out_value) const;
201 const Value** out_value) const;
/external/chromium/chrome/browser/chromeos/
Dcros_settings.h47 bool Get(const std::string& path, Value** out_value) const;
59 bool GetBoolean(const std::string& path, bool* out_value) const;
60 bool GetInteger(const std::string& path, int* out_value) const;
61 bool GetDouble(const std::string& path, double* out_value) const;
62 bool GetString(const std::string& path, std::string* out_value) const;
Dcros_settings.cc154 bool CrosSettings::Get(const std::string& path, Value** out_value) const { in Get()
159 return provider->Get(path, out_value); in Get()
175 int* out_value) const { in GetInteger()
181 return value->GetAsInteger(out_value); in GetInteger()
185 double* out_value) const { in GetDouble()
191 return value->GetAsDouble(out_value); in GetDouble()
195 std::string* out_value) const { in GetString()
201 return value->GetAsString(out_value); in GetString()
Dproxy_cros_settings_provider.cc197 Value** out_value) const { in Get()
255 *out_value = list; in Get()
262 *out_value = dict; in Get()
265 *out_value = NULL; in Get()
Dcros_settings_provider.h24 virtual bool Get(const std::string& path, Value** out_value) const = 0;
Dproxy_cros_settings_provider.h20 virtual bool Get(const std::string& path, Value** out_value) const;
Duser_cros_settings_provider.h60 virtual bool Get(const std::string& path, Value** out_value) const;
Duser_cros_settings_provider.cc554 Value** out_value) const { in Get()
557 *out_value = CreateSettingsBooleanValue( in Get()
565 *out_value = user_list; in Get()
/external/chromium/chrome/browser/extensions/
Dextension_prefs.h368 int* out_value);
373 int* out_value);
378 const ListValue** out_value);
Dextension_prefs.cc377 const DictionaryValue* ext, const std::string& pref_key, int* out_value) { in ReadIntegerFromPref() argument
378 if (!ext->GetInteger(pref_key, out_value)) in ReadIntegerFromPref()
381 return out_value != NULL; in ReadIntegerFromPref()
386 int* out_value) { in ReadExtensionPrefInteger() argument
392 return ReadIntegerFromPref(ext, pref_key, out_value); in ReadExtensionPrefInteger()
397 const ListValue** out_value) { in ReadExtensionPrefList() argument
402 *out_value = out; in ReadExtensionPrefList()
404 return out_value != NULL; in ReadExtensionPrefList()
/external/chromium/chrome/browser/ui/webui/options/chromeos/
Dsystem_settings_provider.h27 virtual bool Get(const std::string& path, Value** out_value) const;
Dsystem_settings_provider.cc215 Value** out_value) const { in Get()
217 *out_value = Value::CreateStringValue(GetKnownTimezoneID( in Get()
/external/chromium/chrome/browser/printing/
Dprint_dialog_cloud.cc104 double* out_value) { in GetDoubleOrInt() argument
105 if (!dictionary.GetDouble(path, out_value)) { in GetDoubleOrInt()
109 *out_value = int_value; in GetDoubleOrInt()