/external/chromium_org/cloud_print/gcp20/prototype/ |
printer_unittest.cc | 22 base::DictionaryValue* dictionary_value = NULL; local 23 EXPECT_TRUE(value->GetAsDictionary(&dictionary_value)) << "Not a dictionary";
|
/external/chromium_org/chromeos/dbus/ |
sms_client.cc | 70 base::DictionaryValue* dictionary_value = NULL; local 71 if (!value.get() || !value->GetAsDictionary(&dictionary_value)) { 77 callback.Run(*dictionary_value);
|
gsm_sms_client.cc | 130 base::DictionaryValue* dictionary_value = NULL; local 131 if (!value.get() || !value->GetAsDictionary(&dictionary_value)) { 135 callback.Run(*dictionary_value);
|
/external/chromium_org/chrome/browser/local_discovery/ |
privet_url_fetcher.cc | 145 const base::DictionaryValue* dictionary_value; local 147 if (!value->GetAsDictionary(&dictionary_value)) { 153 if (dictionary_value->GetString(kPrivetKeyError, &error)) { 160 if (!dictionary_value->GetInteger(kPrivetKeyTimeout, 171 delegate_->OnParsedJson(this, dictionary_value, 172 dictionary_value->HasKey(kPrivetKeyError));
|
cloud_print_base_api_flow.cc | 151 const base::DictionaryValue* dictionary_value = NULL; local 153 if (!value || !value->GetAsDictionary(&dictionary_value)) { 158 delegate_->OnCloudPrintAPIFlowComplete(this, dictionary_value);
|
/external/chromium_org/dbus/ |
values_util_unittest.cc | 299 base::DictionaryValue dictionary_value; local 300 dictionary_value.SetBoolean(kKey1, kBoolValue); 301 dictionary_value.SetInteger(kKey2, kInt32Value); 302 dictionary_value.SetDouble(kKey3, kDoubleValue); 303 dictionary_value.SetString(kKey4, kStringValue); 309 EXPECT_TRUE(value->Equals(&dictionary_value)); 340 base::DictionaryValue dictionary_value; local 341 dictionary_value.SetWithoutPathExpansion( 343 dictionary_value.SetWithoutPathExpansion( 345 dictionary_value.SetWithoutPathExpansion 378 base::DictionaryValue dictionary_value; local [all...] |
values_util.cc | 34 // Pops dict-entries from |reader| and sets them to |dictionary_value| 36 base::DictionaryValue* dictionary_value) { 60 dictionary_value->SetWithoutPathExpansion(key_string, value); 177 scoped_ptr<base::DictionaryValue> dictionary_value( 179 if (PopDictionaryEntries(&sub_reader, dictionary_value.get())) 180 result = dictionary_value.release();
|
/external/chromium_org/components/policy/core/common/ |
config_dir_policy_loader.cc | 154 base::DictionaryValue* dictionary_value = NULL; local 155 if (!value->GetAsDictionary(&dictionary_value)) { 164 if (dictionary_value->Remove("3rdparty", &third_party)) 169 policy_map.LoadFrom(dictionary_value, level, scope_);
|
/external/chromium_org/sync/syncable/ |
entry_kernel.cc | 67 base::DictionaryValue* dictionary_value, 76 dictionary_value->Set(key, value); 83 base::DictionaryValue* dictionary_value, 102 dictionary_value->Set(key, value);
|
/external/chromium_org/components/json_schema/ |
json_schema_validator.cc | 95 const base::DictionaryValue* dictionary_value = NULL; local 129 if (it.value().GetAsDictionary(&dictionary_value)) { 130 if (!IsValidSchema(dictionary_value, options, error)) { 136 if (!list_value->GetDictionary(i, &dictionary_value)) { 142 if (!IsValidSchema(dictionary_value, options, error)) { 185 it.value().GetAsDictionary(&dictionary_value); 186 for (base::DictionaryValue::Iterator it(*dictionary_value); 188 if (!it.value().GetAsDictionary(&dictionary_value)) { 192 if (!IsValidSchema(dictionary_value, options, error)) { 201 it.value().GetAsDictionary(&dictionary_value); [all...] |
/external/chromium_org/base/json/ |
json_value_converter.h | 501 const DictionaryValue* dictionary_value = NULL; local 502 if (!value.GetAsDictionary(&dictionary_value)) 509 if (dictionary_value->Get(field_converter->field_path(), &field)) {
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
file_system_util.cc | 90 base::DictionaryValue* dictionary_value = NULL; local 92 if (!root_value->GetAsDictionary(&dictionary_value) || 93 !dictionary_value->GetString(key, &result)) {
|
/external/chromium_org/google_apis/drive/ |
drive_api_parser.cc | 49 const base::DictionaryValue* dictionary_value; local 50 if (!value->GetAsDictionary(&dictionary_value)) 53 result->reserve(dictionary_value->size()); 54 for (DictionaryValue::Iterator iter(*dictionary_value);
|
gdata_wapi_requests_unittest.cc | 183 base::DictionaryValue* dictionary_value; local 184 CHECK(parsed_content->GetAsDictionary(&dictionary_value)); 185 dictionary_value->Remove("entry.docs$installedApp", NULL); [all...] |
/external/chromium/chrome/browser/sync/syncable/ |
syncable.cc | 191 DictionaryValue* dictionary_value, 200 dictionary_value->Set(key, value); [all...] |