HomeSort by relevance Sort by last modified time
    Searched defs:dict (Results 301 - 325 of 389) sorted by null

<<111213141516

  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/25.5.0-alpha-preview-02/
monkeyrunner-25.5.0-alpha-preview-02.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
stringobject.c 4241 PyObject *dict = NULL; local
    [all...]
typeobject.c 887 /* Clear the instance dict (if any), to break cycles involving only
918 clear_slots(), or DECREF the dict, or clear weakrefs. */
974 dict. */
1009 /* If we added a dict, DECREF it */
1013 PyObject *dict = *dictptr; local
1014 if (dict != NULL) {
1015 Py_DECREF(dict);
1843 PyObject *dict; local
1879 PyObject *dict; local
2063 PyObject *name, *bases, *dict; local
2488 PyObject *mro, *res, *base, *dict; local
3579 PyObject *dict = type->tp_dict; local
3618 PyObject *dict = type->tp_dict; local
3637 PyObject *dict = type->tp_dict; local
3760 PyObject *dict = type->tp_dict; local
3971 PyObject *dict, *bases; local
6347 PyObject *ref, *subclasses, *dict; local
6407 PyObject *dict = type->tp_dict; local
6507 PyObject *mro, *res, *tmp, *dict; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
ceval.c 4565 PyObject *dict, *name, *value; local
    [all...]
compile.c 330 PyObject *dict = PyDict_New(); local
331 if (!dict) return NULL;
337 Py_DECREF(dict);
342 if (k == NULL || PyDict_SetItem(dict, k, v) < 0) {
345 Py_DECREF(dict);
351 return dict;
354 /* Return new dict containing names from src that match scope(s).
357 either scope_type or flag is set, insert it into the new dict. The
943 compiler_add_o(struct compiler *c, PyObject *dict, PyObject *o)
993 v = PyDict_GetItem(dict, t);
2357 PyObject *dict = c->u->u_names; local
    [all...]
Python-ast.c 443 PyObject *dict = PyObject_GetAttrString(self, "__dict__"); local
444 if (dict == NULL) {
450 if (dict) {
451 res = Py_BuildValue("O()O", Py_TYPE(self), dict);
452 Py_DECREF(dict);
752 Dict_type = make_type("Dict", expr_type, Dict_fields, 2);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
stringobject.c 4221 PyObject *dict = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
ceval.c 4543 PyObject *dict, *name, *value; local
    [all...]
compile.c 327 PyObject *dict = PyDict_New(); local
328 if (!dict) return NULL;
334 Py_DECREF(dict);
339 if (k == NULL || PyDict_SetItem(dict, k, v) < 0) {
342 Py_DECREF(dict);
348 return dict;
351 /* Return new dict containing names from src that match scope(s).
354 either scope_type or flag is set, insert it into the new dict. The
920 compiler_add_o(struct compiler *c, PyObject *dict, PyObject *o)
970 v = PyDict_GetItem(dict, t);
2337 PyObject *dict = c->u->u_names; local
    [all...]
  /external/freetype/include/freetype/internal/
psaux.h 261 FT_UInt dict; /* where we expect it */ member in struct:T1_FieldRec_
    [all...]
  /external/libxml2/include/libxml/
parser.h 17 #include <libxml/dict.h>
263 xmlDictPtr dict; /* dictionary 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/libxml2/
tree.c 1053 * Free a string if it is not owned by the "dict" dictionary in the
1057 if ((str) && ((!dict) || \
1058 (xmlDictOwns(dict, (const xmlChar *)(str)) == 0))) \
1066 * Copy a string using a "dict" dictionary in the current scope,
1071 if (dict) { \
1072 if (xmlDictOwns(dict, (const xmlChar *)(str))) \
1075 cpy = (xmlChar *) xmlDictLookup((dict), (const xmlChar *)(str), -1); \
1083 * Copy a string using a "dict" dictionary in the current scope,
1088 if (dict) { \
1089 if (xmlDictOwns(dict, (const xmlChar *)(str)))
1105 xmlDictPtr dict = NULL; local
1211 xmlDictPtr dict = NULL; local
2085 xmlDictPtr dict = NULL; local
3667 xmlDictPtr dict = NULL; local
3736 xmlDictPtr dict = NULL; local
5135 xmlDictPtr dict; local
9396 xmlDictPtr dict; \/* The destination dict *\/ local
    [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
1455 xmlDictPtr dict = NULL; local
1886 xmlDictPtr dict; local
1946 xmlDictPtr dict = NULL; local
2386 xmlDictPtr dict = NULL; local
2575 xmlDictPtr dict = NULL; local
3213 xmlDictPtr dict = NULL; local
    [all...]
xmlreader.c 145 xmlDictPtr dict; /* the context dictionary */ member in struct:_xmlTextReader
174 const xmlChar * xinclude_name; /* the xinclude name from dict */
198 #define CONSTSTR(str) xmlDictLookup(reader->dict, (str), -1)
199 #define CONSTQSTR(p, str) xmlDictQLookup(reader->dict, (p), (str))
213 * Free a string if it is not owned by the "dict" dictionary in the
217 if ((str) && ((!dict) || \
218 (xmlDictOwns(dict, (const xmlChar *)(str)) == 0))) \
232 xmlDictPtr dict = NULL; local
237 dict = id->doc->dict;
287 xmlDictPtr dict; local
348 xmlDictPtr dict; local
428 xmlDictPtr dict; local
    [all...]
  /external/python/cpython2/Modules/_ctypes/
_ctypes.c 133 /* This dict maps ctypes types to POINTER types */
178 PyObject *dict; member in struct:__anon32629
186 Py_XDECREF(self->dict);
194 if (self->key && self->dict) {
195 if (-1 == PyDict_DelItem(self->dict, self->key))
199 Py_CLEAR(self->dict);
249 PyDict_SetItemProxy(PyObject *dict, PyObject *key, PyObject *item)
262 assert(remover->dict == NULL);
265 Py_INCREF(dict);
266 remover->dict = dict
404 StgDictObject *dict; local
503 StgDictObject *dict = PyType_stgdict(type); local
562 StgDictObject *dict = PyType_stgdict(type); local
680 StgDictObject *dict; local
754 StgDictObject *dict = PyType_stgdict((PyObject *)self); local
763 StgDictObject *dict = PyType_stgdict((PyObject *)self); local
1011 StgDictObject *dict; local
1348 PyObject *dict = type->tp_dict; local
1587 StgDictObject *dict; local
1598 StgDictObject *dict = PyObject_stgdict(a->obj); local
1655 StgDictObject *dict; local
1666 StgDictObject *dict = PyObject_stgdict(a->obj); local
1910 StgDictObject *dict; local
2140 StgDictObject *dict; local
2621 StgDictObject *dict = PyObject_stgdict(_self); local
2710 PyObject *dict, *mydict; local
2817 StgDictObject *dict; local
2859 StgDictObject *dict; local
2898 StgDictObject *dict; local
2922 StgDictObject *dict = PyType_stgdict(type); local
3043 StgDictObject *dict; local
3121 StgDictObject *dict; local
3159 StgDictObject *dict; local
3234 StgDictObject *dict; local
3265 StgDictObject *dict; local
3490 StgDictObject *dict; local
3657 StgDictObject *dict; local
3889 StgDictObject *dict = PyObject_stgdict((PyObject *)self); local
4147 StgDictObject *dict; local
4797 StgDictObject *dict = PyObject_stgdict((PyObject *)self); local
4828 StgDictObject *dict; local
5115 StgDictObject *dict = PyType_stgdict((PyObject *)type); local
5432 PyObject *dict = PyDict_New(); local
5488 StgDictObject *dict; local
    [all...]
  /external/python/cpython2/Objects/
stringobject.c 4256 PyObject *dict = NULL; local
    [all...]
  /external/python/cpython2/Python/
ceval.c 4883 PyObject *dict, *name, *value; local
    [all...]
compile.c 330 PyObject *dict = PyDict_New(); local
331 if (!dict) return NULL;
337 Py_DECREF(dict);
342 if (k == NULL || PyDict_SetItem(dict, k, v) < 0) {
345 Py_DECREF(dict);
351 return dict;
354 /* Return new dict containing names from src that match scope(s).
357 either scope_type or flag is set, insert it into the new dict. The
943 compiler_add_o(struct compiler *c, PyObject *dict, PyObject *o)
952 v = PyDict_GetItem(dict, t)
2318 PyObject *dict = c->u->u_names; local
    [all...]
  /external/python/cpython3/Modules/_ctypes/
_ctypes.c 121 /* This dict maps ctypes types to POINTER types */
136 PyObject *dict; member in struct:__anon33223
144 Py_XDECREF(self->dict);
152 if (self->key && self->dict) {
153 if (-1 == PyDict_DelItem(self->dict, self->key))
157 Py_CLEAR(self->dict);
207 PyDict_SetItemProxy(PyObject *dict, PyObject *key, PyObject *item)
220 assert(remover->dict == NULL);
223 Py_INCREF(dict);
224 remover->dict = dict
364 StgDictObject *dict; local
465 StgDictObject *dict = PyType_stgdict(type); local
536 StgDictObject *dict = PyType_stgdict(type); local
644 StgDictObject *dict; local
714 StgDictObject *dict = PyType_stgdict((PyObject *)self); local
723 StgDictObject *dict = PyType_stgdict((PyObject *)self); local
971 StgDictObject *dict; local
1285 PyObject *dict = type->tp_dict; local
1528 StgDictObject *dict; local
1539 StgDictObject *dict = PyObject_stgdict(a->obj); local
1593 StgDictObject *dict; local
1604 StgDictObject *dict = PyObject_stgdict(a->obj); local
1837 StgDictObject *dict; local
2047 StgDictObject *dict; local
2529 StgDictObject *dict = PyObject_stgdict(myself); local
2593 PyObject *dict, *mydict; local
2700 StgDictObject *dict; local
2742 StgDictObject *dict; local
2781 StgDictObject *dict; local
2805 StgDictObject *dict = PyType_stgdict(type); local
2933 StgDictObject *dict; local
3011 StgDictObject *dict; local
3049 StgDictObject *dict; local
3124 StgDictObject *dict; local
3155 StgDictObject *dict; local
3384 StgDictObject *dict; local
3550 StgDictObject *dict; local
3780 StgDictObject *dict = PyObject_stgdict((PyObject *)self); local
4037 StgDictObject *dict; local
4594 StgDictObject *dict = PyObject_stgdict((PyObject *)self); local
4625 StgDictObject *dict; local
4896 StgDictObject *dict = PyType_stgdict((PyObject *)type); local
5233 StgDictObject *dict; local
    [all...]
  /external/python/cpython3/Objects/
dictobject.c 100 converting the dict to the combined table.
103 /* PyDict_MINSIZE is the starting size for any new dict.
113 #include "dict-common.h"
117 class dict "PyDictObject *" "&PyDict_Type"
150 their own hash codes, and this fits in a dict of size 2**15, the last 15 bits
435 /* Uncomment to check the dict content in _PyDict_CheckConsistency() */
740 /* The dict was mutated, restart */
791 /* The dict was mutated, restart */
1007 _PyDict_HasOnlyStringKeys(PyObject *dict)
4338 PyObject *dict, **dictptr = _PyObject_GetDictPtr(obj); local
4363 PyObject *dict; local
    [all...]
  /external/toybox/toys/pending/
xzcat.c 1420 struct dictionary dict; member in struct:xz_dec_lzma2
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cPickle.c 56 #define DICT 'd'
99 * batch_list/dict() pumps out before doing APPENDS/SETITEMS. Nothing will
3824 PyObject *dict; local
3847 PyObject *dict, *key, *value; local
4492 PyObject *value = 0, *key = 0, *dict = 0; local
4583 PyObject *dict; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_descr.py 187 # Testing dict operations...
188 if hasattr(dict, '__cmp__'): # PyPy has only rich comparison on dicts
209 for i in dict.__iter__(d):
221 dict = {'a': a, 'b': b}
227 res = eval(expr, dict)
234 res = eval(expr, dict)
400 # Testing Python subclass of dict...
401 self.assertTrue(issubclass(dict, dict))
402 self.assertIsInstance({}, dict)
2189 dict = {1:2, 3:4, 'a':1j} variable in class:.test_dict_constructors.Mapping
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cPickle.c 56 #define DICT 'd'
99 * batch_list/dict() pumps out before doing APPENDS/SETITEMS. Nothing will
3789 PyObject *dict; local
3812 PyObject *dict, *key, *value; local
4457 PyObject *value = 0, *key = 0, *dict = 0; local
4548 PyObject *dict; local
    [all...]

Completed in 927 milliseconds

<<111213141516