HomeSort by relevance Sort by last modified time
    Searched refs:dictionary_value (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/chrome/browser/local_discovery/
privet_url_fetcher.cc 71 const base::DictionaryValue* dictionary_value; local
73 if (!value->GetAsDictionary(&dictionary_value)) {
78 delegate_->OnParsedJson(this, dictionary_value,
79 dictionary_value->HasKey(kPrivetKeyError));
privet_confirm_api_flow.cc 87 const base::DictionaryValue* dictionary_value; local
90 if (!value.get() || !value->GetAsDictionary(&dictionary_value)
91 || !dictionary_value->GetBoolean(cloud_print::kSuccessValue, &success)) {
  /external/chromium_org/chromeos/dbus/
sms_client.cc 63 base::DictionaryValue* dictionary_value = NULL; local
64 if (!value.get() || !value->GetAsDictionary(&dictionary_value)) {
70 callback.Run(*dictionary_value);
gsm_sms_client.cc 133 base::DictionaryValue* dictionary_value = NULL; local
134 if (!value.get() || !value->GetAsDictionary(&dictionary_value)) {
138 callback.Run(*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/chrome/browser/policy/
config_dir_policy_loader.cc 153 base::DictionaryValue* dictionary_value = NULL; local
154 if (!value->GetAsDictionary(&dictionary_value)) {
163 if (dictionary_value->Remove("3rdparty", &third_party))
168 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/chrome/common/json_schema/
json_schema_validator.cc 82 const base::DictionaryValue* dictionary_value = NULL; local
116 if (it.value().GetAsDictionary(&dictionary_value)) {
117 if (!IsValidSchema(dictionary_value, error)) {
123 if (!list_value->GetDictionary(i, &dictionary_value)) {
129 if (!IsValidSchema(dictionary_value, error)) {
169 it.value().GetAsDictionary(&dictionary_value);
170 for (base::DictionaryValue::Iterator it(*dictionary_value);
172 if (!it.value().GetAsDictionary(&dictionary_value)) {
176 if (!IsValidSchema(dictionary_value, error)) {
185 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 101 base::DictionaryValue* dictionary_value = NULL; local
103 if (!root_value->GetAsDictionary(&dictionary_value) ||
104 !dictionary_value->GetString(key, &result)) {
  /external/chromium_org/chrome/browser/google_apis/
drive_api_parser.cc 50 const base::DictionaryValue* dictionary_value; local
51 if (!value->GetAsDictionary(&dictionary_value))
54 result->reserve(dictionary_value->size());
55 for (DictionaryValue::Iterator iter(*dictionary_value);
gdata_wapi_requests_unittest.cc 184 base::DictionaryValue* dictionary_value; local
185 CHECK(parsed_content->GetAsDictionary(&dictionary_value));
186 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...]

Completed in 438 milliseconds