Searched defs:dict (Results 1 - 25 of 508) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DACBTree.h41 __strong AMutableDictionary *dict; /* The dictionary that this node belongs to */ variable
59 @property (retain) AMutableDictionary *dict; variable
/external/chromium_org/ash/system/chromeos/network/
H A Dtray_sms.cc367 base::DictionaryValue* dict = new base::DictionaryValue(); local
368 dict->SetString(kSmsNumberKey, message_number);
369 dict->SetString(kSmsTextKey, message_text);
370 messages_.Append(dict);
/external/chromium_org/base/debug/
H A Dtrace_event_unittest.cc209 DictionaryValue* dict) {
212 if (dict->Get(key_value->key, &value) &&
219 dict->GetDictionary("args", &args_dict);
227 DictionaryValue* dict) {
230 if (!IsKeyValueInDict(key_values, dict))
246 DictionaryValue* dict = static_cast<DictionaryValue*>(value); local
248 if (IsAllKeyValueInDict(key_values, dict))
249 return dict;
267 DictionaryValue* dict = static_cast<DictionaryValue*>(value); local
269 if(dict
208 IsKeyValueInDict(const JsonKeyValue* key_value, DictionaryValue* dict) argument
226 IsAllKeyValueInDict(const JsonKeyValue* key_values, DictionaryValue* dict) argument
318 IsStringInDict(const char* string_to_match, const DictionaryValue* dict) argument
354 const DictionaryValue* dict = static_cast<const DictionaryValue*>(value); local
372 const DictionaryValue* dict = static_cast<const DictionaryValue*>(value); local
852 const DictionaryValue* dict = static_cast<const DictionaryValue*>(value); local
1965 DictionaryValue* dict = FindNamePhase("bar", "X"); local
2072 DictionaryValue* dict = NULL; local
[all...]
/external/chromium_org/base/json/
H A Djson_parser_unittest.cc81 base::DictionaryValue* dict; local
82 EXPECT_TRUE(value->GetAsDictionary(&dict));
84 EXPECT_TRUE(dict->GetString("abc", &str));
H A Djson_reader_unittest.cc588 DictionaryValue* dict = NULL; local
591 ASSERT_TRUE(root_dict->GetDictionary("test", &dict));
594 EXPECT_TRUE(dict->Remove("foo", &dict_literal_0));
595 EXPECT_TRUE(dict->Remove("bar", &dict_literal_1));
596 EXPECT_TRUE(dict->Remove("baz", &dict_string_0));
597 EXPECT_TRUE(dict->Remove("moo", &dict_string_1));
H A Djson_value_converter_unittest.cc51 const base::DictionaryValue* dict = NULL; local
52 if (!value->GetAsDictionary(&dict))
55 if (!dict->GetString("val", result))
H A Djson_writer.cc154 const DictionaryValue* dict = NULL; local
156 bool result = node->GetAsDictionary(&dict);
158 for (DictionaryValue::Iterator itr(*dict); !itr.IsAtEnd();
/external/chromium_org/base/mac/
H A Dfoundation_util.h346 T GetValueFromDictionary(CFDictionaryRef dict, CFStringRef key) { argument
347 CFTypeRef value = CFDictionaryGetValue(dict, key);
/external/chromium_org/base/prefs/
H A Djson_pref_store_unittest.cc310 pref_store->SetValue("dict", new base::DictionaryValue);
328 EXPECT_TRUE(pref_store->GetValue("dict", &result));
342 base::DictionaryValue* dict = new base::DictionaryValue; local
343 dict->SetString("key", "value");
344 pref_store->SetValue("dict", dict);
346 pref_store->RemoveValue("dict.key");
349 bool has_dict = pref_store->GetValue("dict", &retrieved_dict);
/external/chromium_org/base/
H A Dvalues.cc46 const DictionaryValue* dict = static_cast<const DictionaryValue*>(node); local
48 for (DictionaryValue::Iterator it(*dict); !it.IsAtEnd(); it.Advance()) {
H A Dvalues_unittest.cc262 DictionaryValue dict; local
263 dict.Set(key, new DeletionTestValue(&deletion_flag));
269 DictionaryValue dict; local
270 dict.Set(key, new DeletionTestValue(&deletion_flag));
272 dict.Clear();
277 DictionaryValue dict; local
278 dict.Set(key, new DeletionTestValue(&deletion_flag));
280 dict.Set(key, Value::CreateNullValue());
291 DictionaryValue dict; local
292 dict
305 DictionaryValue dict; local
316 DictionaryValue dict; local
338 DictionaryValue dict; local
776 DictionaryValue dict; local
[all...]
/external/chromium_org/cc/debug/
H A Dtraced_value.cc26 void TracedValue::MakeDictIntoImplicitSnapshot(base::debug::TracedValue* dict, argument
29 dict->SetString("id", base::StringPrintf("%s/%p", object_name, id));
34 base::debug::TracedValue* dict,
37 dict->SetString("cat", category);
38 MakeDictIntoImplicitSnapshot(dict, object_name, id);
43 base::debug::TracedValue* dict,
47 dict->SetString("cat", category);
48 dict->SetString("base_type", object_base_type_name);
49 MakeDictIntoImplicitSnapshot(dict, object_name, id);
32 MakeDictIntoImplicitSnapshotWithCategory( const char* category, base::debug::TracedValue* dict, const char* object_name, const void* id) argument
41 MakeDictIntoImplicitSnapshotWithCategory( const char* category, base::debug::TracedValue* dict, const char* object_base_type_name, const char* object_name, const void* id) argument
/external/chromium_org/cc/test/
H A Dlayer_tree_json_parser.cc22 base::DictionaryValue* dict; local
24 success &= val->GetAsDictionary(&dict);
26 success &= dict->GetString("LayerType", &layer_type);
28 success &= dict->GetList("Bounds", &list);
32 success &= dict->GetList("Position", &list);
38 success &= dict->GetBoolean("DrawsContent", &draws_content);
46 success &= dict->GetList("ImageAperture", &list);
54 success &= dict->GetList("ImageBounds", &bounds);
59 success &= dict->GetList("Border", &list);
67 success &= dict
[all...]
/external/chromium_org/chrome/browser/accessibility/
H A Daccessibility_extension_api.cc40 base::DictionaryValue* dict = new base::DictionaryValue(); local
41 info->SerializeToDict(dict);
44 args->Append(dict);
261 // Get the serialized dict from the last focused control and return it.
262 // However, if the dict is empty, that means we haven't seen any focus
/external/chromium_org/chrome/browser/android/bookmarks/
H A Dpartner_bookmarks_shim.cc252 const base::DictionaryValue* dict = NULL; local
253 if (!*it || !(*it)->GetAsDictionary(&dict)) {
261 if (!dict->GetString(kMappingUrl, &url) ||
262 !dict->GetString(kMappingProviderTitle, &provider_title) ||
263 !dict->GetString(kMappingTitle, &mapped_title)) {
282 base::DictionaryValue* dict = new base::DictionaryValue(); local
283 dict->SetString(kMappingUrl, i->first.url().spec());
284 dict->SetString(kMappingProviderTitle, i->first.provider_title());
285 dict->SetString(kMappingTitle, i->second);
286 list.Append(dict);
[all...]
/external/chromium_org/chrome/browser/android/
H A Dnew_tab_page_prefs.cc89 const base::DictionaryValue* dict = profile_->GetPrefs()->GetDictionary( local
91 return dict && dict->HasKey(ConvertJavaStringToUTF8(env, session_tag));
/external/chromium_org/chrome/browser/apps/
H A Dapp_browsertest.cc1027 base::DictionaryValue* dict = update.Get(); local
1030 dict->SetString(key, "1");
/external/chromium_org/chrome/browser/background/
H A Dbackground_contents_service.cc584 const base::DictionaryValue* dict; local
585 if (!contents->GetDictionaryWithoutPathExpansion(extension_id, &dict) ||
586 dict == NULL)
591 dict->GetString(kUrlKey, &url);
592 dict->GetString(kFrameNameKey, &frame_name);
692 base::DictionaryValue* dict = new base::DictionaryValue(); local
693 dict->SetString(kUrlKey, background_contents->GetURL().spec());
694 dict->SetString(kFrameNameKey, contents_map_[appid].frame_name);
695 pref->SetWithoutPathExpansion(base::UTF16ToUTF8(appid), dict); local
/external/chromium_org/chrome/browser/bookmarks/
H A Dchrome_bookmark_client_unittest.cc65 base::DictionaryValue* dict = new base::DictionaryValue(); local
66 dict->SetString("name", title);
67 dict->SetString("url", GURL(url).spec());
68 return dict;
73 base::DictionaryValue* dict = new base::DictionaryValue(); local
74 dict->SetString("name", title);
75 dict->Set("children", children);
76 return dict;
102 const base::DictionaryValue* dict) {
104 if (!dict
101 NodeMatchesValue(const BookmarkNode* node, const base::DictionaryValue* dict) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/app_mode/
H A Dkiosk_app_data.cc352 const base::DictionaryValue* dict = local
357 if (!dict->GetString(name_key, &name_) ||
358 !dict->GetString(icon_path_key, &icon_path_string)) {
H A Dkiosk_app_launch_error.cc68 const base::DictionaryValue* dict = local
72 if (dict->GetInteger(kKeyLaunchError, &error))
H A Dkiosk_app_manager.cc609 const base::DictionaryValue* dict = local
612 if (!dict->GetInteger(kKeyAutoLoginState, &value))
H A Dkiosk_app_manager_browsertest.cc323 const base::DictionaryValue* dict = local
328 EXPECT_TRUE(dict->GetString(name_key, &name));
333 EXPECT_TRUE(dict->GetString(icon_path_key, &icon_path_string));
422 const base::DictionaryValue* dict = local
425 EXPECT_TRUE(dict->GetDictionary(KioskAppManager::kKeyApps, &apps_dict));
488 const base::DictionaryValue* dict = local
492 EXPECT_TRUE(dict->GetString("apps.app_1.name", &name));
496 EXPECT_TRUE(dict->GetString("apps.app_1.icon", &icon_path_string));
H A Dstartup_app_launcher.cc133 base::DictionaryValue* dict = NULL; local
135 !value.get() || !value->GetAsDictionary(&dict)) {
140 dict->GetString(kOAuthRefreshToken, &auth_params->refresh_token);
141 dict->GetString(kOAuthClientId, &auth_params->client_id);
142 dict->GetString(kOAuthClientSecret, &auth_params->client_secret);

Completed in 4870 milliseconds

1234567891011>>