Searched defs:out_value (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/content/browser/webui/
H A Dweb_ui_message_handler.cc29 double* out_value) {
32 return base::StringToDouble(string_value, out_value);
33 if (value->GetDouble(0, out_value))
28 ExtractDoubleValue(const ListValue* value, double* out_value) argument
/external/chromium/chrome/browser/prefs/
H A Dproxy_prefs.cc37 bool IntToProxyMode(int in_value, ProxyMode* out_value) { argument
38 DCHECK(out_value);
41 *out_value = static_cast<ProxyMode>(in_value);
46 bool StringToProxyMode(const std::string& in_value, ProxyMode* out_value) { argument
47 DCHECK(out_value);
50 return IntToProxyMode(i, out_value);
/external/chromium_org/chrome/browser/extensions/api/signedin_devices/
H A Dsignedin_devices_api.cc29 const base::DictionaryValue* out_value = NULL; local
33 &out_value) || out_value == NULL) {
37 out_value = dictionary.get();
44 return out_value;
H A Did_mapping_helper.cc56 const Value *out_value; local
61 } while (mapping.Get(string_value, &out_value));
/external/chromium_org/chromeos/network/
H A Ddevice_state.cc84 const base::Value* out_value = NULL; local
86 &out_value))
89 *out_value, &sim_retries_left_))
93 &out_value))
96 *out_value, &sim_lock_type_))
100 &out_value))
103 *out_value, &sim_lock_enabled_))
H A Dmanaged_state.cc74 bool* out_value) {
80 if (*out_value == new_value)
82 *out_value = new_value;
88 int* out_value) {
94 if (*out_value == new_value)
96 *out_value = new_value;
102 std::string* out_value) {
108 if (*out_value == new_value)
110 *out_value = new_value;
116 uint32* out_value) {
72 GetBooleanValue(const std::string& key, const base::Value& value, bool* out_value) argument
86 GetIntegerValue(const std::string& key, const base::Value& value, int* out_value) argument
100 GetStringValue(const std::string& key, const base::Value& value, std::string* out_value) argument
114 GetUInt32Value(const std::string& key, const base::Value& value, uint32* out_value) argument
[all...]
/external/chromium_org/chrome/browser/prefs/
H A Dincognito_mode_prefs.cc21 Availability* out_value) {
23 *out_value = ENABLED;
26 *out_value = static_cast<Availability>(in_value);
20 IntToAvailability(int in_value, Availability* out_value) argument
H A Dproxy_prefs.cc33 bool IntToProxyMode(int in_value, ProxyMode* out_value) { argument
34 DCHECK(out_value);
37 *out_value = static_cast<ProxyMode>(in_value);
41 bool StringToProxyMode(const std::string& in_value, ProxyMode* out_value) { argument
42 DCHECK(out_value);
45 return IntToProxyMode(i, out_value);
/external/chromium_org/net/base/
H A Durl_util.cc73 std::string* out_value) {
85 *out_value = UnescapeURLComponent(
91 *out_value = "";
71 GetValueForKeyInQuery(const GURL& url, const std::string& search_key, std::string* out_value) argument
/external/chromium_org/chrome/browser/chromeos/input_method/
H A Dibus_controller_base.cc46 InputMethodConfigValue* out_value) {
47 DCHECK(out_value);
53 *out_value = iter->second;
43 GetInputMethodConfigForTesting( const std::string& section, const std::string& config_name, InputMethodConfigValue* out_value) argument
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Dbase_screen_handler_utils.h29 inline bool ParseValue(const Value* value, T* out_value);
32 inline bool ParseValue<bool>(const Value* value, bool* out_value) { argument
33 return value->GetAsBoolean(out_value);
37 inline bool ParseValue<int>(const Value* value, int* out_value) { argument
38 return value->GetAsInteger(out_value);
42 inline bool ParseValue<double>(const Value* value, double* out_value) { argument
43 return value->GetAsDouble(out_value);
48 std::string* out_value) {
49 return value->GetAsString(out_value);
54 base::string16* out_value) {
47 ParseValue(const Value* value, std::string* out_value) argument
53 ParseValue(const Value* value, base::string16* out_value) argument
59 ParseValue( const Value* value, const base::DictionaryValue** out_value) argument
66 GetArg(const base::ListValue* args, size_t index, T* out_value) argument
[all...]
/external/chromium_org/ppapi/proxy/
H A Dppapi_param_traits.cc676 bool out_value = false; local
677 bool result = p.GetBool(&out_value);
682 ParamTraits<bool>::Write(m, out_value);
686 int32_t out_value = 0; local
687 bool result = p.GetInt32(&out_value);
692 ParamTraits<int32_t>::Write(m, out_value);
/external/chromium_org/chrome/browser/chromeos/
H A Dproxy_cros_settings_parser.cc289 base::Value** out_value) {
359 *out_value = NULL;
375 *out_value = dict;
287 GetProxyPrefValue(const UIProxyConfigService& config_service, const std::string& path, base::Value** out_value) argument
/external/chromium_org/chrome/installer/util/
H A Dmaster_preferences.cc26 bool GetURLFromValue(const base::Value* in_value, std::string* out_value) { argument
27 return in_value && out_value && in_value->GetAsString(out_value);
/external/chromium_org/chrome/test/chromedriver/
H A Dcommands.cc81 scoped_ptr<base::Value>* out_value) {
127 out_value->reset(session->capabilities->DeepCopy());
77 CreateSessionOnSessionThreadHelper( const NewSessionParams& bound_params, const base::DictionaryValue& params, const std::string& session_id, scoped_ptr<base::Value>* out_value) argument
/external/chromium_org/chrome/browser/ui/webui/print_preview/
H A Dprint_preview_ui.cc63 // Returns true and sets |out_value| on success.
64 bool Get(int32 preview_id, int* out_value) { argument
69 *out_value = it->second;
/external/chromium/base/
H A Dvalues.cc102 bool Value::GetAsBoolean(bool* out_value) const {
106 bool Value::GetAsInteger(int* out_value) const {
110 bool Value::GetAsDouble(double* out_value) const {
114 bool Value::GetAsString(std::string* out_value) const {
118 bool Value::GetAsString(string16* out_value) const {
122 bool Value::GetAsList(ListValue** out_value) { argument
167 bool FundamentalValue::GetAsBoolean(bool* out_value) const {
168 if (out_value && IsType(TYPE_BOOLEAN))
169 *out_value = boolean_value_;
173 bool FundamentalValue::GetAsInteger(int* out_value) cons
592 Remove(const std::string& path, Value** out_value) argument
608 RemoveWithoutPathExpansion(const std::string& key, Value** out_value) argument
805 Remove(size_t index, Value** out_value) argument
861 GetAsList(ListValue** out_value) argument
[all...]
/external/chromium/chrome/browser/printing/
H A Dprint_dialog_cloud.cc104 double* out_value) {
105 if (!dictionary.GetDouble(path, out_value)) {
109 *out_value = int_value;
102 GetDoubleOrInt(const DictionaryValue& dictionary, const std::string& path, double* out_value) argument
/external/chromium_org/chrome/browser/bookmarks/
H A Dbookmark_model_unittest.cc1100 std::string out_value; local
1101 EXPECT_TRUE(node.GetMetaInfo("key1", &out_value));
1102 EXPECT_EQ("value1", out_value);
1105 EXPECT_FALSE(node.GetMetaInfo("key2.subkey1", &out_value));
1107 EXPECT_TRUE(node.GetMetaInfo("key2.subkey1", &out_value));
1108 EXPECT_EQ("value2", out_value);
1110 EXPECT_FALSE(node.GetMetaInfo("key2.subkey2.leaf", &out_value));
1112 EXPECT_TRUE(node.GetMetaInfo("key2.subkey2.leaf", &out_value));
1113 EXPECT_EQ("", out_value);
1119 EXPECT_FALSE(node.GetMetaInfo("key1", &out_value));
[all...]
/external/chromium_org/base/
H A Dvalues.cc114 bool Value::GetAsBoolean(bool* out_value) const {
118 bool Value::GetAsInteger(int* out_value) const {
122 bool Value::GetAsDouble(double* out_value) const {
126 bool Value::GetAsString(std::string* out_value) const {
130 bool Value::GetAsString(string16* out_value) const {
134 bool Value::GetAsList(ListValue** out_value) { argument
138 bool Value::GetAsList(const ListValue** out_value) const {
142 bool Value::GetAsDictionary(DictionaryValue** out_value) { argument
146 bool Value::GetAsDictionary(const DictionaryValue** out_value) const {
202 bool FundamentalValue::GetAsBoolean(bool* out_value) cons
349 GetAsDictionary(DictionaryValue** out_value) argument
485 Get(const std::string& path, Value** out_value) argument
564 GetBinary(const std::string& path, BinaryValue** out_value) argument
584 GetDictionary(const std::string& path, DictionaryValue** out_value) argument
604 GetList(const std::string& path, ListValue** out_value) argument
623 GetWithoutPathExpansion(const std::string& key, Value** out_value) argument
690 GetDictionaryWithoutPathExpansion( const std::string& key, DictionaryValue** out_value) argument
714 GetListWithoutPathExpansion(const std::string& key, ListValue** out_value) argument
722 Remove(const std::string& path, scoped_ptr<Value>* out_value) argument
739 RemoveWithoutPathExpansion(const std::string& key, scoped_ptr<Value>* out_value) argument
861 Get(size_t index, Value** out_value) argument
919 GetBinary(size_t index, BinaryValue** out_value) argument
938 GetDictionary(size_t index, DictionaryValue** out_value) argument
956 GetList(size_t index, ListValue** out_value) argument
962 Remove(size_t index, scoped_ptr<Value>* out_value) argument
990 Erase(iterator iter, scoped_ptr<Value>* out_value) argument
1068 GetAsList(ListValue** out_value) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_prefs.cc377 const DictionaryValue* ext, const std::string& pref_key, int* out_value) {
378 if (!ext->GetInteger(pref_key, out_value))
381 return out_value != NULL;
386 int* out_value) {
392 return ReadIntegerFromPref(ext, pref_key, out_value);
397 const ListValue** out_value) {
402 *out_value = out;
404 return out_value != NULL;
376 ReadIntegerFromPref( const DictionaryValue* ext, const std::string& pref_key, int* out_value) argument
384 ReadExtensionPrefInteger( const std::string& extension_id, const std::string& pref_key, int* out_value) argument
395 ReadExtensionPrefList( const std::string& extension_id, const std::string& pref_key, const ListValue** out_value) argument
/external/chromium_org/chrome/browser/extensions/
H A Dextension_prefs.cc443 bool* out_value) const {
445 if (!ext || !ext->GetBoolean(pref_key, out_value))
453 int* out_value) const {
455 if (!ext || !ext->GetInteger(pref_key, out_value))
463 std::string* out_value) const {
465 if (!ext || !ext->GetString(pref_key, out_value))
473 const ListValue** out_value) const {
478 if (out_value)
479 *out_value = out;
487 const DictionaryValue** out_value) cons
525 bool out_value = false; local
[all...]

Completed in 317 milliseconds