Searched defs:out_value (Results 1 - 23 of 23) 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 base::ListValue* value, double* out_value) argument
/external/chromium_org/chrome/browser/prefs/
H A Dbrowser_ui_prefs_migrator_unittest.cc115 int out_value; local
119 EXPECT_TRUE(dictionary->GetInteger("bottom", &out_value));
120 EXPECT_EQ(1000, out_value);
125 EXPECT_TRUE(dictionary->GetInteger("top", &out_value));
126 EXPECT_EQ(50, out_value);
131 EXPECT_TRUE(dictionary->GetInteger("right", &out_value));
132 EXPECT_EQ(986, out_value);
139 EXPECT_TRUE(dictionary->GetInteger("left", &out_value));
140 EXPECT_EQ(700, out_value);
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);
H A Dincognito_mode_prefs.cc33 Availability* out_value) {
35 *out_value = ENABLED;
38 *out_value = static_cast<Availability>(in_value);
32 IntToAvailability(int in_value, Availability* out_value) argument
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Dbase_screen_handler_utils.cc12 bool ParseStringList(const base::Value* value, StringListType* out_value) { argument
16 out_value->resize(list->GetSize());
18 if (!list->GetString(i, &((*out_value)[i])))
26 bool ParseValue(const base::Value* value, bool* out_value) { argument
27 return value->GetAsBoolean(out_value);
30 bool ParseValue(const base::Value* value, int* out_value) { argument
31 return value->GetAsInteger(out_value);
34 bool ParseValue(const base::Value* value, double* out_value) { argument
35 return value->GetAsDouble(out_value);
38 bool ParseValue(const base::Value* value, std::string* out_value) { argument
42 ParseValue(const base::Value* value, base::string16* out_value) argument
46 ParseValue(const base::Value* value, const base::DictionaryValue** out_value) argument
51 ParseValue(const base::Value* value, StringList* out_value) argument
55 ParseValue(const base::Value* value, String16List* out_value) argument
[all...]
H A Dbase_screen_handler_utils.h31 bool ParseValue(const base::Value* value, bool* out_value);
32 bool ParseValue(const base::Value* value, int* out_value);
33 bool ParseValue(const base::Value* value, double* out_value);
34 bool ParseValue(const base::Value* value, std::string* out_value);
35 bool ParseValue(const base::Value* value, base::string16* out_value);
37 const base::DictionaryValue** out_value);
38 bool ParseValue(const base::Value* value, StringList* out_value);
39 bool ParseValue(const base::Value* value, String16List* out_value);
42 inline bool GetArg(const base::ListValue* args, size_t index, T* out_value) { argument
46 return ParseValue(value, out_value);
[all...]
/external/chromium_org/chrome/browser/extensions/api/signed_in_devices/
H A Dsigned_in_devices_api.cc33 const base::DictionaryValue* out_value = NULL; local
37 &out_value) || out_value == NULL) {
41 out_value = dictionary.get();
48 return out_value;
H A Did_mapping_helper.cc60 const base::Value *out_value; local
65 } while (mapping.Get(string_value, &out_value));
/external/chromium_org/chromeos/network/
H A Ddevice_state.cc72 const base::Value* out_value = NULL; local
74 &out_value))
77 *out_value, &sim_retries_left_))
81 &out_value))
84 *out_value, &sim_lock_type_))
88 &out_value))
91 *out_value, &sim_lock_enabled_))
H A Dmanaged_state.cc86 bool* out_value) {
92 if (*out_value == new_value)
94 *out_value = new_value;
100 int* out_value) {
106 if (*out_value == new_value)
108 *out_value = new_value;
114 std::string* out_value) {
120 if (*out_value == new_value)
122 *out_value = new_value;
128 uint32* out_value) {
84 GetBooleanValue(const std::string& key, const base::Value& value, bool* out_value) argument
98 GetIntegerValue(const std::string& key, const base::Value& value, int* out_value) argument
112 GetStringValue(const std::string& key, const base::Value& value, std::string* out_value) argument
126 GetUInt32Value(const std::string& key, const base::Value& value, uint32* out_value) argument
[all...]
/external/chromium_org/net/base/
H A Durl_util.cc127 std::string* out_value) {
130 *out_value = it.GetUnescapedValue();
125 GetValueForKeyInQuery(const GURL& url, const std::string& search_key, std::string* out_value) argument
/external/chromium_org/ppapi/proxy/
H A Dppapi_param_traits.cc572 bool out_value = false; local
573 bool result = p.GetBool(&out_value);
578 ParamTraits<bool>::Write(m, out_value);
582 int32_t out_value = 0; local
583 bool result = p.GetInt32(&out_value);
588 ParamTraits<int32_t>::Write(m, out_value);
/external/chromium_org/chrome/browser/chromeos/
H A Dproxy_cros_settings_parser.cc290 base::Value** out_value) {
360 *out_value = NULL;
376 *out_value = dict;
288 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_elf/
H A Dchrome_elf_util.cc154 DWORD out_value = 0; local
157 kRegValueUsageStats, &out_value)) {
158 return out_value == 1;
162 kRegValueUsageStats, &out_value) && out_value == 1;
/external/chromium_org/content/browser/media/
H A Dmedia_internals.cc271 scoped_ptr<base::Value> out_value; local
272 CHECK(cached_data_.Remove(cache_key, &out_value));
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/
H A Djs_fs.cc91 bool JsFs::GetVarInt32(PP_Var var, int32_t* out_value) { argument
94 *out_value = var.value.as_int;
98 *out_value = static_cast<int32_t>(var.value.as_double);
106 bool JsFs::GetVarUint32(PP_Var var, uint32_t* out_value) { argument
109 *out_value = static_cast<uint32_t>(var.value.as_int);
113 *out_value = static_cast<uint32_t>(var.value.as_double);
121 bool JsFs::GetVarInt64(PP_Var var, int64_t* out_value) { argument
124 *out_value = var.value.as_int;
128 *out_value = static_cast<int64_t>(var.value.as_double);
150 *out_value
[all...]
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/
H A Dfake_pepper_interface_url_loader.cc21 std::string* out_value) {
22 out_value->clear();
44 out_value->assign(headers, nonspace, newline - nonspace);
19 GetHeaderValue(const std::string& headers, const std::string& key, std::string* out_value) argument
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dresource_metadata.cc211 FileError ResourceMetadata::GetLargestChangestamp(int64* out_value) { argument
213 return storage_->GetLargestChangestamp(out_value);
/external/chromium_org/chrome/browser/ui/webui/print_preview/
H A Dprint_preview_ui.cc66 // Returns true and sets |out_value| on success.
67 bool Get(int32 preview_id, int* out_value) { argument
72 *out_value = it->second;
/external/chromium_org/base/
H A Dvalues.cc92 bool Value::GetAsBoolean(bool* out_value) const {
96 bool Value::GetAsInteger(int* out_value) const {
100 bool Value::GetAsDouble(double* out_value) const {
104 bool Value::GetAsString(std::string* out_value) const {
108 bool Value::GetAsString(string16* out_value) const {
112 bool Value::GetAsString(const StringValue** out_value) const {
116 bool Value::GetAsList(ListValue** out_value) { argument
120 bool Value::GetAsList(const ListValue** out_value) const {
124 bool Value::GetAsDictionary(DictionaryValue** out_value) { argument
128 bool Value::GetAsDictionary(const DictionaryValue** out_value) cons
345 GetAsDictionary(DictionaryValue** out_value) argument
478 Get(const std::string& path, Value** out_value) argument
557 GetBinary(const std::string& path, BinaryValue** out_value) argument
577 GetDictionary(const std::string& path, DictionaryValue** out_value) argument
597 GetList(const std::string& path, ListValue** out_value) argument
616 GetWithoutPathExpansion(const std::string& key, Value** out_value) argument
683 GetDictionaryWithoutPathExpansion( const std::string& key, DictionaryValue** out_value) argument
707 GetListWithoutPathExpansion(const std::string& key, ListValue** out_value) argument
715 Remove(const std::string& path, scoped_ptr<Value>* out_value) argument
732 RemoveWithoutPathExpansion(const std::string& key, scoped_ptr<Value>* out_value) argument
748 RemovePath(const std::string& path, scoped_ptr<Value>* out_value) argument
876 Get(size_t index, Value** out_value) argument
934 GetBinary(size_t index, BinaryValue** out_value) argument
953 GetDictionary(size_t index, DictionaryValue** out_value) argument
971 GetList(size_t index, ListValue** out_value) argument
977 Remove(size_t index, scoped_ptr<Value>* out_value) argument
1005 Erase(iterator iter, scoped_ptr<Value>* out_value) argument
1083 GetAsList(ListValue** out_value) argument
[all...]
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_model_unittest.cc1178 std::string out_value; local
1179 EXPECT_TRUE(node.GetMetaInfo("key1", &out_value));
1180 EXPECT_EQ("value1", out_value);
1183 EXPECT_FALSE(node.GetMetaInfo("key2.subkey1", &out_value));
1185 EXPECT_TRUE(node.GetMetaInfo("key2.subkey1", &out_value));
1186 EXPECT_EQ("value2", out_value);
1188 EXPECT_FALSE(node.GetMetaInfo("key2.subkey2.leaf", &out_value));
1190 EXPECT_TRUE(node.GetMetaInfo("key2.subkey2.leaf", &out_value));
1191 EXPECT_EQ("", out_value);
1197 EXPECT_FALSE(node.GetMetaInfo("key1", &out_value));
[all...]
/external/chromium_org/extensions/browser/
H A Dextension_prefs.cc482 bool* out_value) const {
484 if (!ext || !ext->GetBoolean(pref_key, out_value))
492 int* out_value) const {
494 if (!ext || !ext->GetInteger(pref_key, out_value))
502 std::string* out_value) const {
504 if (!ext || !ext->GetString(pref_key, out_value))
512 const base::ListValue** out_value) const {
517 if (out_value)
518 *out_value = out;
526 const base::DictionaryValue** out_value) cons
564 bool out_value = false; local
[all...]

Completed in 3609 milliseconds