HomeSort by relevance Sort by last modified time
    Searched defs:dict (Results 101 - 125 of 149) sorted by null

1 2 3 45 6

  /external/clang/test/SemaCXX/
new-delete.cpp 166 const Comp *dict; local
167 new Thai(dict);
  /external/hyphenation/
hyphen.c 168 hnj_get_state (HyphenDict *dict, HashTab *hashtab, const char *string)
177 hnj_hash_insert (hashtab, string, dict->num_states);
178 /* predicate is true if dict->num_states is a power of two */
179 if (!(dict->num_states & (dict->num_states - 1)))
181 dict->states = hnj_realloc (dict->states,
182 (dict->num_states << 1) *
185 dict->states[dict->num_states].match = NULL
272 HyphenDict *dict = hnj_hyphen_load_from_buffer(addr, sb.st_size); local
282 HyphenDict *dict[2]; local
    [all...]
  /external/v8/src/
objects-debug.cc 787 StringDictionary* dict = property_dictionary(); local
788 info->number_of_slow_used_properties_ += dict->NumberOfElements();
790 dict->Capacity() - dict->NumberOfElements();
814 SeededNumberDictionary* dict = element_dictionary(); local
815 info->number_of_slow_used_elements_ += dict->NumberOfElements();
817 dict->Capacity() - dict->NumberOfElements();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserHistoryDictionary.java 88 final UserHistoryDictionary dict = ref == null ? null : ref.get(); local
89 if (dict != null) {
93 return dict;
96 final UserHistoryDictionary dict = local
98 sLangDictCache.put(locale, new SoftReference<UserHistoryDictionary>(dict));
99 return dict;
226 final String fileName = NAME + "." + mLocale + ".dict";
299 final String locale, final UserHistoryDictionary dict,
303 mUserHistoryDictionary = dict;
337 final String fileName = NAME + "." + mLocale + ".dict";
    [all...]
  /external/chromium/chrome/browser/ui/webui/
net_internals_ui.cc 110 DictionaryValue* dict = new DictionaryValue(); local
113 dict->SetString("url", experiment.url.spec());
115 dict->SetString("proxy_settings_experiment",
118 dict->SetString("host_resolver_experiment",
121 return dict;
736 DictionaryValue* dict = new DictionaryValue(); local
740 dict->SetInteger(name, static_cast<int>(event_types[i]));
743 CallJavascriptFunction(L"g_browser.receivedLogEventTypeConstants", dict);
749 DictionaryValue* dict = new DictionaryValue(); local
757 dict->SetString("version", version_info.Version())
778 DictionaryValue* dict = new DictionaryValue(); local
791 DictionaryValue* dict = new DictionaryValue(); local
804 DictionaryValue* dict = new DictionaryValue(); local
816 DictionaryValue* dict = new DictionaryValue(); local
828 DictionaryValue* dict = new DictionaryValue(); local
840 DictionaryValue* dict = new DictionaryValue(); local
890 DictionaryValue* dict = new DictionaryValue(); local
922 DictionaryValue* dict = new DictionaryValue(); local
954 DictionaryValue* dict = new DictionaryValue(); local
1272 DictionaryValue* dict = new DictionaryValue(); local
1390 DictionaryValue* dict = new DictionaryValue(); local
    [all...]
  /external/chromium/net/base/
host_resolver_impl.cc 119 DictionaryValue* dict = new DictionaryValue(); local
120 dict->SetInteger("net_error", net_error_);
123 dict->SetInteger("os_error", os_error_);
125 dict->SetString("os_error_string", gai_strerror(os_error_));
137 dict->SetString("os_error_string", WideToUTF8(error_string));
142 return dict;
159 DictionaryValue* dict = new DictionaryValue(); local
160 dict->SetString("host", info_.host_port_pair().ToString());
161 dict->SetInteger("address_family",
163 dict->SetBoolean("allow_cached_response", info_.allow_cached_response())
187 DictionaryValue* dict = new DictionaryValue(); local
    [all...]
  /external/chromium/net/socket/
client_socket_pool_base.cc 542 DictionaryValue* dict = new DictionaryValue(); local
543 dict->SetString("name", name);
544 dict->SetString("type", type);
545 dict->SetInteger("handed_out_socket_count", handed_out_socket_count_);
546 dict->SetInteger("connecting_socket_count", connecting_socket_count_);
547 dict->SetInteger("idle_socket_count", idle_socket_count_);
548 dict->SetInteger("max_socket_count", max_sockets_);
549 dict->SetInteger("max_sockets_per_group", max_sockets_per_group_);
550 dict->SetInteger("pool_generation_number", pool_generation_number_);
553 return dict;
    [all...]
  /external/chromium/net/spdy/
spdy_session.cc 49 DictionaryValue* dict = new DictionaryValue(); local
56 dict->SetInteger("flags", flags_);
57 dict->Set("headers", headers_list);
58 dict->SetInteger("id", id_);
60 dict->SetInteger("associated_stream", associated_stream_);
61 return dict;
73 DictionaryValue* dict = new DictionaryValue(); local
74 dict->Set("host", new StringValue(host_pair_.first.ToString()));
75 dict->Set("proxy", new StringValue(host_pair_.second.ToPacString()));
76 return dict;
89 DictionaryValue* dict = new DictionaryValue(); local
115 DictionaryValue* dict = new DictionaryValue(); local
139 DictionaryValue* dict = new DictionaryValue(); local
161 DictionaryValue* dict = new DictionaryValue(); local
180 DictionaryValue* dict = new DictionaryValue(); local
202 DictionaryValue* dict = new DictionaryValue(); local
919 DictionaryValue* dict = new DictionaryValue(); local
    [all...]
  /external/e2fsprogs/e2fsck/
dict.c 17 * $Id: dict.c,v 1.40.2.7 2000/11/13 01:36:44 kaz Exp $
33 #include "dict.h"
36 static const char rcsid[] = "$Id: dict.c,v 1.40.2.7 2000/11/13 01:36:44 kaz Exp $";
43 * program which uses dict to define, for instance, a macro called ``parent''.
138 static void free_nodes(dict_t *dict, dnode_t *node, dnode_t *nil)
142 free_nodes(dict, node->left, nil);
143 free_nodes(dict, node->right, nil);
144 dict->freenode(node, dict->context);
156 static int verify_bintree(dict_t *dict)
1059 dict_t *dict = load->dictptr; local
1083 dict_t *dict = load->dictptr; local
    [all...]
  /external/libxml2/
debugXML.c 47 xmlDictPtr dict; /* the doc dictionnary */ member in struct:_xmlDebugCtxt
67 ctxt->dict = NULL;
261 if ((ctxt->dict != NULL) &&
262 (!xmlDictOwns(ctxt->dict, name)) &&
275 xmlDictPtr dict; local
285 dict = NULL;
287 dict = doc->dict;
288 if ((dict == NULL) && (ctxt->nodict == 0)) {
300 if (ctxt->dict == NULL)
    [all...]
pattern.c 33 #include <libxml/dict.h>
80 if ((c)->comp->dict) \
81 r = (xmlChar *) xmlDictLookup((c)->comp->dict, BAD_CAST nsname, -1); \
84 #define XML_PAT_FREE_STRING(c, r) if ((c)->comp->dict == NULL) xmlFree(r);
98 xmlDict *dict; /* the dictionary if any */ member in struct:_xmlStreamComp
163 xmlDictPtr dict; /* the optional dictionary */ member in struct:_xmlPattern
179 xmlDictPtr dict; /* the dictionary if any */ member in struct:_xmlPatParserContext
241 if (comp->dict == NULL) {
252 if (comp->dict != NULL)
253 xmlDictFree(comp->dict);
    [all...]
schematron.c 136 xmlDictPtr dict; /* the dictionnary used internally */ member in struct:_xmlSchematron
159 xmlDictPtr dict; member in struct:_xmlSchematronValidCtxt
187 xmlDictPtr dict; /* dictionnary for interned string names */ member in struct:_xmlSchematronParserCtxt
403 pattern = xmlPatterncompile(context, ctxt->dict, XML_PATTERN_XPATH,
548 ret->dict = ctxt->dict;
549 xmlDictReference(ret->dict);
574 xmlDictFree(schema->dict);
605 ret->dict = xmlDictCreate();
606 ret->URL = xmlDictLookup(ret->dict, (const xmlChar *) URL, -1)
    [all...]
valid.c 924 xmlDictPtr dict = NULL; local
927 dict = doc->dict;
966 if (dict == NULL)
969 ret->name = xmlDictLookup(dict, name, -1);
971 if (dict == NULL) {
975 ret->prefix = xmlDictLookup(dict, name, l);
976 ret->name = xmlDictLookup(dict, tmp, -1);
1010 xmlDictPtr dict = NULL; local
1015 dict = doc->dict
1103 xmlDictPtr dict = NULL; local
1449 xmlDictPtr dict = NULL; local
1873 xmlDictPtr dict; local
1933 xmlDictPtr dict = NULL; local
2367 xmlDictPtr dict = NULL; local
2550 xmlDictPtr dict = NULL; local
3183 xmlDictPtr dict = NULL; local
    [all...]
tree.c 1035 * Free a string if it is not owned by the "dict" dictionnary in the
1039 if ((str) && ((!dict) || \
1040 (xmlDictOwns(dict, (const xmlChar *)(str)) == 0))) \
1048 * Copy a string using a "dict" dictionnary in the current scope,
1053 if (dict) { \
1054 if (xmlDictOwns(dict, (const xmlChar *)(str))) \
1057 cpy = (xmlChar *) xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1065 * Copy a string using a "dict" dictionnary in the current scope,
1070 if (dict) { \
1071 if (xmlDictOwns(dict, (const xmlChar *)(str)))
1087 xmlDictPtr dict = NULL; local
1193 xmlDictPtr dict = NULL; local
2040 xmlDictPtr dict = NULL; local
3598 xmlDictPtr dict = NULL; local
3667 xmlDictPtr dict = NULL; local
5015 xmlDictPtr dict; local
9187 xmlDictPtr dict; \/* The destination dict *\/ local
    [all...]
  /external/libxml2/include/libxml/
xpath.h 348 xmlDictPtr dict; /* dictionary if any */ member in struct:_xmlXPathContext
tree.h 62 * 2) when creating a tree, xmlNs->href is stored in the dict of xmlDoc.
541 struct _xmlDict *dict; /* dict used to allocate names or NULL */ member in struct:_xmlDoc
    [all...]
parser.h 17 #include <libxml/dict.h>
263 xmlDictPtr dict; /* dictionnary for the parser */ member in struct:_xmlParserCtxt
266 int docdict; /* use strings from dict to build tree */
    [all...]
schemasInternals.h 23 #include <libxml/dict.h>
942 xmlDictPtr dict; member in struct:_xmlSchema
  /external/linux-tools-perf/util/
python.c 868 PyObject *dict, *module = Py_InitModule("perf", perf__methods); local
890 dict = PyModule_GetDict(module);
891 if (dict == NULL)
898 PyDict_SetItemString(dict, perf__constants[i].name, obj);
  /external/chromium/chrome/browser/extensions/
extension_prefs.cc 125 DictionaryValue* dict = DictionaryPrefUpdate::Get(); local
127 if (!dict->GetDictionary(extension_id_, &extension)) {
130 dict->Set(extension_id_, extension);
150 DictionaryValue* dict = DictionaryPrefUpdate::Get(); local
153 if (!dict->GetDictionary(key, &preferences)) {
155 dict->Set(key, preferences);
275 const DictionaryValue* dict = prefs_->GetDictionary(kExtensionsPref); local
276 if (!dict || dict->empty())
281 for (DictionaryValue::key_iterator i = dict->begin_keys()
998 const DictionaryValue* dict = prefs_->GetDictionary(kExtensionsPref); local
1023 DictionaryValue* dict = update.Get(); local
1033 const DictionaryValue* dict = prefs_->GetDictionary(kExtensionsPref); local
1486 DictionaryValue* dict = update.Get(); local
1507 DictionaryValue* dict = update.Get(); local
    [all...]
extension_service_unittest.cc 697 const DictionaryValue* dict = local
699 ASSERT_TRUE(dict != NULL);
700 EXPECT_EQ(count, dict->size());
714 const DictionaryValue* dict = local
716 ASSERT_TRUE(dict != NULL) << msg;
718 ASSERT_TRUE(dict->GetDictionary(extension_id, &pref)) << msg;
727 const DictionaryValue* dict = local
729 if (dict == NULL) return false;
731 if (!dict->GetDictionary(extension_id, &pref)) {
755 const DictionaryValue* dict local
776 const DictionaryValue* dict = local
793 DictionaryValue* dict = update.Get(); local
831 DictionaryValue* dict = update.Get(); local
1062 DictionaryValue* dict = update.Get(); local
    [all...]
  /external/freetype/include/freetype/internal/
psaux.h 236 FT_UInt dict; /* where we expect it */ member in struct:T1_FieldRec_
    [all...]
  /external/qemu/
block.c 1663 QDict *dict; local
    [all...]
  /prebuilts/devtools/tools/lib/
monkeyrunner.jar 
  /external/chromium/chrome/browser/automation/
automation_provider_observers.cc 300 DictionaryValue dict; local
301 dict.SetInteger("result", navigation_result);
303 .SendSuccess(&dict);
1177 DictionaryValue dict; local
1993 DictionaryValue* dict = new DictionaryValue; local
    [all...]

Completed in 1172 milliseconds

1 2 3 45 6