/external/libchrome/base/trace_event/ |
trace_event_argument_unittest.cc | 103 auto dict_value = make_scoped_ptr(new DictionaryValue); local 104 dict_value->SetBoolean("bool", true); 105 dict_value->SetInteger("int", 42); 106 dict_value->SetDouble("double", 42.0f); 107 dict_value->SetString("string", std::string("a") + "b"); 108 dict_value->SetString("string", std::string("a") + "b"); 114 list_value->Append(std::move(dict_value)); 121 dict_value.reset(); 133 auto dict_value = make_scoped_refptr(new TracedValue); local 134 dict_value->SetInteger("a", 1) [all...] |
trace_event_argument.cc | 275 const DictionaryValue* dict_value; local 276 value.GetAsDictionary(&dict_value); 278 for (DictionaryValue::Iterator it(*dict_value); !it.IsAtEnd(); 329 const DictionaryValue* dict_value; local 330 value.GetAsDictionary(&dict_value); 332 for (DictionaryValue::Iterator it(*dict_value); !it.IsAtEnd();
|
/external/libweave/src/ |
utils.cc | 51 base::DictionaryValue* dict_value = nullptr; local 52 if (!value->GetAsDictionary(&dict_value)) { 58 // |value| is now owned by |dict_value|. 61 result.reset(dict_value);
|
device_registration_info.cc | 214 base::DictionaryValue* dict_value = nullptr; local 215 if (!value->GetAsDictionary(&dict_value)) { 221 // |value| is now owned by |dict_value|, so release the scoped_ptr now. 224 return std::unique_ptr<base::DictionaryValue>(dict_value); [all...] |
/external/ppp/pppd/plugins/radius/ |
dict.c | 23 static DICT_VALUE *dictionary_values = NULL; 47 DICT_VALUE *dval; 250 (DICT_VALUE *) malloc (sizeof (DICT_VALUE))) 251 == (DICT_VALUE *) NULL) 371 DICT_VALUE *rc_dict_findval (char *valname) 373 DICT_VALUE *val; 376 while (val != (DICT_VALUE *) NULL) 384 return ((DICT_VALUE *) NULL); 395 DICT_VALUE * rc_dict_getval (UINT4 value, char *attrname [all...] |
radiusclient.h | 311 typedef struct dict_value struct 316 struct dict_value *next; 317 } DICT_VALUE; 432 DICT_VALUE *rc_dict_findval __P((char *)); 433 DICT_VALUE * rc_dict_getval __P((UINT4, char *));
|
avpair.c | 528 DICT_VALUE *dval; 612 == (DICT_VALUE *) NULL) 694 DICT_VALUE *dval; 734 if (dval != (DICT_VALUE *) NULL)
|
/system/weaved/common/ |
binder_utils.cc | 55 base::DictionaryValue* dict_value = nullptr; local 56 if (!value || !value->GetAsDictionary(&dict_value)) { 60 dict->reset(dict_value);
|
/system/webservd/webservd/ |
config.cc | 130 const base::DictionaryValue* dict_value = nullptr; // Owned by |value| local 131 if (!value->GetAsDictionary(&dict_value)) { 141 dict_value->GetString(kLogDirectoryKey, &config->log_directory); 144 if (dict_value->GetList(kProtocolHandlersKey, &protocol_handlers)) {
|
/external/libbrillo/brillo/http/ |
http_utils.cc | 407 base::DictionaryValue* dict_value = nullptr; local 408 if (!value->GetAsDictionary(&dict_value)) { 415 // |value| is now owned by |dict_value|, so release the scoped_ptr now. 418 return std::unique_ptr<base::DictionaryValue>(dict_value);
|
/external/libweave/third_party/chromium/base/ |
values_unittest.cc | 834 DictionaryValue dict_value; local 842 main_dict.Set("dict", dict_value.CreateDeepCopy()); 850 main_list.Append(dict_value.CreateDeepCopy()); [all...] |
/external/libchrome/base/ |
values_unittest.cc | 874 DictionaryValue dict_value; local [all...] |