Searched refs:dict (Results 1 - 25 of 1157) sorted by relevance

1234567891011>>

/external/lldb/test/functionalities/command_script/
H A Dbug11569.py1 def bug11569(debugger, args, result, dict):
/external/lldb/examples/summaries/
H A Dobjc.py4 def BOOL_SummaryProvider (valobj,dict):
12 def BOOLRef_SummaryProvider (valobj, dict):
13 return BOOL_SummaryProvider (valobj.GetChildAtIndex(0),dict)
15 def BOOLPtr_SummaryProvider (valobj,dict):
16 return BOOL_SummaryProvider (valobj.Dereference(),dict)
/external/chromium_org/chrome/browser/extensions/api/identity_private/
H A Didentity_private_api.cc20 base::DictionaryValue* dict = new base::DictionaryValue; local
21 SetResult(dict);
23 dict->SetString(
/external/chromium_org/sync/internal_api/events/
H A Dprotocol_event.cc15 scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue());
17 dict->SetDouble("time", event.GetTimestamp().ToJsTime());
18 dict->SetString("type", event.GetType());
19 dict->SetString("details", event.GetDetails());
20 dict->Set("proto", event.GetProtoMessage().release());
22 return dict.Pass();
/external/chromium_org/chrome/browser/ui/webui/quota_internals/
H A Dquota_internals_types.cc43 base::DictionaryValue* dict = new base::DictionaryValue; local
44 dict->SetString("type", StorageTypeToString(type_));
46 dict->SetDouble("usage", static_cast<double>(usage_));
48 dict->SetDouble("unlimitedUsage", static_cast<double>(unlimited_usage_));
50 dict->SetDouble("quota", static_cast<double>(quota_));
51 return dict;
62 base::DictionaryValue* dict = new base::DictionaryValue; local
64 dict->SetString("host", host_);
65 dict->SetString("type", StorageTypeToString(type_));
67 dict
85 base::DictionaryValue* dict = new base::DictionaryValue; local
[all...]
/external/chromium_org/build/android/buildbot/
H A Denv_to_json.py11 print json.dumps(dict(os.environ))
/external/lldb/test/functionalities/command_script/import/foo/bar/
H A Dfoobar.py1 def foo_function(debugger, args, result, dict):
/external/lldb/test/functionalities/command_script/import/foo/
H A Dfoo.py1 def foo_function(debugger, args, result, dict):
/external/ltrace/
H A Dvalue_dict.h36 void val_dict_init(struct value_dict *dict);
45 int val_dict_push_next(struct value_dict *dict, struct value *val);
48 size_t val_dict_count(struct value_dict *dict);
53 int val_dict_push_named(struct value_dict *dict, struct value *val,
58 struct value *val_dict_get_num(struct value_dict *dict, size_t num);
61 struct value *val_dict_get_name(struct value_dict *dict, const char *name);
65 void val_dict_destroy(struct value_dict *dict);
H A Ddict.c24 #include "dict.h"
32 bitp(struct dict *dict, size_t n) argument
34 return VECT_ELEMENT(&dict->status, struct status_bits, n);
38 dict_init(struct dict *dict, argument
47 vect_init(&dict->keys, key_size);
48 vect_init(&dict->values, value_size);
49 VECT_INIT(&dict->status, struct status_bits);
50 dict
122 dict_size(const struct dict *dict) argument
128 dict_empty(const struct dict *dict) argument
151 dict_destroy(struct dict *dict, void (*dtor_key)(void *tgt, void *data), void (*dtor_value)(void *tgt, void *data), void *data) argument
184 n(struct dict *dict) argument
190 hash2(struct dict *dict) argument
201 getkey(struct dict *dict, size_t pos) argument
208 getvalue(struct dict *dict, size_t pos) argument
215 find_slot(struct dict *dict, const void *key, int *foundp, int *should_rehash, size_t *pi) argument
271 rehash(struct dict *dict, size_t nn) argument
366 dict_insert(struct dict *dict, void *key, void *value) argument
399 dict_find(struct dict *dict, const void *key) argument
414 dict_erase(struct dict *dict, const void *key, void (*dtor_key)(void *tgt, void *data), void (*dtor_value)(void *tgt, void *data), void *data) argument
445 dict_each(struct dict *dict, void *start_after, enum callback_status (*cb)(void *, void *, void *), void *data) argument
[all...]
/external/chromium_org/net/url_request/
H A Durl_request_netlog_params.cc19 base::DictionaryValue* dict = new base::DictionaryValue(); local
20 dict->SetString("url", url->possibly_invalid_spec());
21 dict->SetString("method", *method);
22 dict->SetInteger("load_flags", load_flags);
23 dict->SetString("priority", RequestPriorityToString(priority));
25 dict->SetString("upload_id", base::Int64ToString(upload_id));
26 return dict;
31 const base::DictionaryValue* dict; local
32 if (!event_params->GetAsDictionary(&dict) ||
33 !dict
[all...]
/external/chromium_org/remoting/webapp/
H A Dtypecheck.js6 * Get the |key| attribute in the given |dict| and verify that it is an
12 * @param {Object.<string,*>} dict The dictionary containing the |key|
13 * @param {string} key The key to typecheck in the |dict|.
17 function getArrayAttr(dict, key, opt_default) {
18 var value = /** @type {Array} */ (dict[key]);
31 * Get the |key| attribute in the given |dict| and verify that it is a
37 * @param {Object.<string,*>} dict The dictionary containing the |key|
38 * @param {string} key The key to typecheck in the |dict|.
42 function getBooleanAttr(dict, key, opt_default) {
43 var value = /** @type {boolean} */ (dict[ke
[all...]
/external/chromium_org/ppapi/c/
H A Dppb_var_dictionary.h47 * @param[in] dict A dictionary var.
53 * <code>dict</code>, an undefined var is returned.
55 struct PP_Var (*Get)(struct PP_Var dict, struct PP_Var key);
59 * @param[in] dict A dictionary var.
61 * <code>dict</code>, it is added and associated with <code>value</code>;
68 PP_Bool (*Set)(struct PP_Var dict, struct PP_Var key, struct PP_Var value);
73 * @param[in] dict A dictionary var.
76 void (*Delete)(struct PP_Var dict, struct PP_Var key);
80 * @param[in] dict A dictionary var.
85 PP_Bool (*HasKey)(struct PP_Var dict, struc
[all...]
/external/chromium_org/content/browser/accessibility/
H A Daccessibility_tree_formatter_android.cc70 const BrowserAccessibility& node, base::DictionaryValue* dict) {
75 dict->SetString("class", android_node->GetClassName());
78 dict->SetBoolean("checkable", android_node->IsCheckable());
79 dict->SetBoolean("checked", android_node->IsChecked());
80 dict->SetBoolean("clickable", android_node->IsClickable());
81 dict->SetBoolean("collection", android_node->IsCollection());
82 dict->SetBoolean("collection_item", android_node->IsCollectionItem());
83 dict->SetBoolean("disabled", !android_node->IsEnabled());
84 dict->SetBoolean("dismissable", android_node->IsDismissable());
85 dict
69 AddProperties( const BrowserAccessibility& node, base::DictionaryValue* dict) argument
117 ToString( const base::DictionaryValue& dict, const base::string16& indent) argument
[all...]
/external/chromium_org/net/disk_cache/
H A Dnet_log_parameters.cc20 base::DictionaryValue* dict = new base::DictionaryValue(); local
21 dict->SetString("key", entry->GetKey());
22 dict->SetBoolean("created", created);
23 return dict;
32 base::DictionaryValue* dict = new base::DictionaryValue(); local
33 dict->SetInteger("index", index);
34 dict->SetInteger("offset", offset);
35 dict->SetInteger("buf_len", buf_len);
37 dict->SetBoolean("truncate", truncate);
38 return dict;
45 base::DictionaryValue* dict = new base::DictionaryValue(); local
58 base::DictionaryValue* dict = new base::DictionaryValue(); local
70 base::DictionaryValue* dict = new base::DictionaryValue(); local
80 base::DictionaryValue* dict = new base::DictionaryValue(); local
[all...]
/external/chromium_org/content/browser/download/
H A Ddownload_net_log_parameters.cc50 base::DictionaryValue* dict = new base::DictionaryValue(); local
52 dict->SetString("type", download_type_names[download_type]);
53 dict->SetString("id", base::Int64ToString(download_item->GetId()));
54 dict->SetString("original_url", download_item->GetOriginalUrl().spec());
55 dict->SetString("final_url", download_item->GetURL().spec());
56 dict->SetString("file_name", *file_name);
57 dict->SetString("danger_type",
59 dict->SetString("start_offset",
61 dict->SetBoolean("has_user_gesture", download_item->HasUserGesture());
63 return dict;
69 base::DictionaryValue* dict = new base::DictionaryValue(); local
79 base::DictionaryValue* dict = new base::DictionaryValue(); local
91 base::DictionaryValue* dict = new base::DictionaryValue(); local
106 base::DictionaryValue* dict = new base::DictionaryValue(); local
120 base::DictionaryValue* dict = new base::DictionaryValue(); local
131 base::DictionaryValue* dict = new base::DictionaryValue(); local
141 base::DictionaryValue* dict = new base::DictionaryValue(); local
153 base::DictionaryValue* dict = new base::DictionaryValue(); local
164 base::DictionaryValue* dict = new base::DictionaryValue(); local
175 base::DictionaryValue* dict = new base::DictionaryValue(); local
186 base::DictionaryValue* dict = new base::DictionaryValue(); local
198 base::DictionaryValue* dict = new base::DictionaryValue(); local
[all...]
/external/chromium_org/chrome/browser/prefs/
H A Dproxy_config_dictionary_unittest.cc22 ProxyConfigDictionary dict(dict_value.get());
25 ASSERT_TRUE(dict.GetMode(&h.mode));
27 ASSERT_FALSE(dict.GetPacUrl(&h.bypass_list));
28 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
29 ASSERT_FALSE(dict.GetBypassList(&h.bypass_list));
35 ProxyConfigDictionary dict(dict_value.get());
38 ASSERT_TRUE(dict.GetMode(&h.mode));
40 ASSERT_FALSE(dict.GetPacUrl(&h.bypass_list));
41 ASSERT_FALSE(dict.GetProxyServer(&h.proxy_server));
42 ASSERT_FALSE(dict
[all...]
/external/lldb/source/Host/macosx/cfcpp/
H A DCFCMutableDictionary.cpp50 CFMutableDictionaryRef dict = get(); local
51 if (dict)
52 return ::CFDictionaryGetCount (dict);
60 CFMutableDictionaryRef dict = get(); local
61 if (dict)
62 return ::CFDictionaryGetCountOfKey (dict, key);
70 CFMutableDictionaryRef dict = get(); local
71 if (dict)
72 return ::CFDictionaryGetCountOfValue (dict, value);
79 CFMutableDictionaryRef dict local
89 CFMutableDictionaryRef dict = get(); local
98 CFMutableDictionaryRef dict = get(); local
108 CFMutableDictionaryRef dict = get(); local
120 CFMutableDictionaryRef dict = Dictionary(can_create); local
133 CFMutableDictionaryRef dict = Dictionary(can_create); local
146 CFMutableDictionaryRef dict = Dictionary(can_create); local
163 CFMutableDictionaryRef dict = Dictionary(can_create); local
180 CFMutableDictionaryRef dict = Dictionary(can_create); local
197 CFMutableDictionaryRef dict = Dictionary(can_create); local
214 CFMutableDictionaryRef dict = Dictionary(can_create); local
231 CFMutableDictionaryRef dict = Dictionary(can_create); local
248 CFMutableDictionaryRef dict = Dictionary(can_create); local
265 CFMutableDictionaryRef dict = Dictionary(can_create); local
282 CFMutableDictionaryRef dict = Dictionary(can_create); local
301 CFMutableDictionaryRef dict = Dictionary(can_create); local
321 CFMutableDictionaryRef dict = Dictionary(can_create); local
340 CFMutableDictionaryRef dict = Dictionary(can_create); local
359 CFMutableDictionaryRef dict = Dictionary(can_create); local
378 CFMutableDictionaryRef dict = Dictionary(can_create); local
398 CFMutableDictionaryRef dict = Dictionary(can_create); local
418 CFMutableDictionaryRef dict = Dictionary(can_create); local
437 CFMutableDictionaryRef dict = Dictionary(can_create); local
456 CFMutableDictionaryRef dict = Dictionary(can_create); local
475 CFMutableDictionaryRef dict = Dictionary(can_create); local
492 CFMutableDictionaryRef dict = Dictionary(can_create); local
510 CFMutableDictionaryRef dict = get(); local
518 CFMutableDictionaryRef dict = get(); local
525 CFMutableDictionaryRef dict = get(); local
[all...]
/external/chromium_org/sync/js/
H A Djs_event_details_unittest.cc22 base::DictionaryValue dict; local
23 dict.SetString("foo", "bar");
24 dict.Set("baz", new base::ListValue());
26 scoped_ptr<base::DictionaryValue> dict_copy(dict.DeepCopy());
28 JsEventDetails details(&dict);
30 // |details| should take over |dict|'s data.
31 EXPECT_TRUE(dict.empty());
/external/libxml2/
H A Ddict.c2 * dict.c: dictionary of reusable strings, just used to avoid allocation
36 * Note2: the fast function used for a small dict won't protect very
56 #include <libxml/dict.h>
70 #define xmlDictComputeKey(dict, name, len) \
71 (((dict)->size == MIN_DICT_SIZE) ? \
72 xmlDictComputeFastKey(name, len, (dict)->seed) : \
73 xmlDictComputeBigKey(name, len, (dict)->seed))
75 #define xmlDictComputeQKey(dict, prefix, plen, name, len) \
77 (xmlDictComputeKey(dict, name, len)) : \
78 (((dict)
118 struct _xmlDictEntry *dict; member in struct:_xmlDict
241 xmlDictAddString(xmlDictPtr dict, const xmlChar *name, unsigned int namelen) argument
305 xmlDictAddQString(xmlDictPtr dict, const xmlChar *prefix, unsigned int plen, const xmlChar *name, unsigned int namelen) argument
537 xmlDictPtr dict; local
584 xmlDictPtr dict = xmlDictCreate(); local
606 xmlDictReference(xmlDictPtr dict) argument
628 xmlDictGrow(xmlDictPtr dict, size_t size) argument
761 xmlDictFree(xmlDictPtr dict) argument
826 xmlDictLookup(xmlDictPtr dict, const xmlChar *name, int len) argument
966 xmlDictExists(xmlDictPtr dict, const xmlChar *name, int len) argument
1074 xmlDictQLookup(xmlDictPtr dict, const xmlChar *prefix, const xmlChar *name) argument
1179 xmlDictOwns(xmlDictPtr dict, const xmlChar *str) argument
1205 xmlDictSize(xmlDictPtr dict) argument
1224 xmlDictSetLimit(xmlDictPtr dict, size_t limit) argument
1244 xmlDictGetUsage(xmlDictPtr dict) argument
[all...]
/external/chromium_org/net/socket/
H A Dsocket_net_log_params.cc20 base::DictionaryValue* dict = new base::DictionaryValue(); local
21 dict->SetInteger("net_error", net_error);
22 dict->SetInteger("os_error", os_error);
23 return dict;
28 base::DictionaryValue* dict = new base::DictionaryValue(); local
29 dict->SetString("host_and_port", host_and_port->ToString());
30 return dict;
35 base::DictionaryValue* dict = new base::DictionaryValue(); local
36 dict->SetString("address", address->ToString());
37 return dict;
43 base::DictionaryValue* dict = new base::DictionaryValue(); local
[all...]
/external/chromium_org/net/udp/
H A Dudp_net_log_parameters.cc20 base::DictionaryValue* dict = new base::DictionaryValue(); local
21 dict->SetInteger("byte_count", byte_count);
23 dict->SetString("hex_encoded_bytes", base::HexEncode(bytes, byte_count));
25 dict->SetString("address", address->ToString());
26 return dict;
31 base::DictionaryValue* dict = new base::DictionaryValue(); local
32 dict->SetString("address", address->ToString());
33 return dict;
/external/chromium_org/third_party/skia/tests/
H A DRefDictTest.cpp20 SkRefDict dict; local
22 REPORTER_ASSERT(reporter, NULL == dict.find(NULL));
23 REPORTER_ASSERT(reporter, NULL == dict.find("foo"));
24 REPORTER_ASSERT(reporter, NULL == dict.find("bar"));
26 dict.set("foo", &data0);
27 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
30 dict.set("foo", &data0);
31 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
34 dict.set("foo", &data1);
35 REPORTER_ASSERT(reporter, &data1 == dict
[all...]
/external/skia/tests/
H A DRefDictTest.cpp20 SkRefDict dict; local
22 REPORTER_ASSERT(reporter, NULL == dict.find(NULL));
23 REPORTER_ASSERT(reporter, NULL == dict.find("foo"));
24 REPORTER_ASSERT(reporter, NULL == dict.find("bar"));
26 dict.set("foo", &data0);
27 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
30 dict.set("foo", &data0);
31 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
34 dict.set("foo", &data1);
35 REPORTER_ASSERT(reporter, &data1 == dict
[all...]
/external/lldb/test/functionalities/breakpoint/breakpoint_command/
H A Dbktptcmd.py1 def function(frame, bp_loc, dict):

Completed in 2327 milliseconds

1234567891011>>