/external/chromium/base/ |
D | values.cc | 102 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 …]
|
D | values.h | 91 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/ |
D | proxy_prefs.cc | 37 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()
|
D | pref_value_store.cc | 105 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()
|
D | proxy_prefs.h | 47 bool IntToProxyMode(int in_value, ProxyMode* out_value); 49 ProxyMode* out_value);
|
D | pref_value_store.h | 81 const Value** out_value) const; 201 const Value** out_value) const;
|
/external/chromium/chrome/browser/chromeos/ |
D | cros_settings.h | 47 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;
|
D | cros_settings.cc | 154 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()
|
D | proxy_cros_settings_provider.cc | 197 Value** out_value) const { in Get() 255 *out_value = list; in Get() 262 *out_value = dict; in Get() 265 *out_value = NULL; in Get()
|
D | cros_settings_provider.h | 24 virtual bool Get(const std::string& path, Value** out_value) const = 0;
|
D | proxy_cros_settings_provider.h | 20 virtual bool Get(const std::string& path, Value** out_value) const;
|
D | user_cros_settings_provider.h | 60 virtual bool Get(const std::string& path, Value** out_value) const;
|
D | user_cros_settings_provider.cc | 554 Value** out_value) const { in Get() 557 *out_value = CreateSettingsBooleanValue( in Get() 565 *out_value = user_list; in Get()
|
/external/chromium/chrome/browser/extensions/ |
D | extension_prefs.h | 368 int* out_value); 373 int* out_value); 378 const ListValue** out_value);
|
D | extension_prefs.cc | 377 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/ |
D | system_settings_provider.h | 27 virtual bool Get(const std::string& path, Value** out_value) const;
|
D | system_settings_provider.cc | 215 Value** out_value) const { in Get() 217 *out_value = Value::CreateStringValue(GetKnownTimezoneID( in Get()
|
/external/chromium/chrome/browser/printing/ |
D | print_dialog_cloud.cc | 104 double* out_value) { in GetDoubleOrInt() argument 105 if (!dictionary.GetDouble(path, out_value)) { in GetDoubleOrInt() 109 *out_value = int_value; in GetDoubleOrInt()
|