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

<<111213141516

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
typeobject.c 879 /* There's no need to clear the instance dict (if any);
904 clear_slots(), or DECREF the dict, or clear weakrefs. */
958 dict. */
993 /* If we added a dict, DECREF it */
997 PyObject *dict = *dictptr; local
998 if (dict != NULL) {
999 Py_DECREF(dict);
1825 PyObject *dict; local
1861 PyObject *dict; local
2045 PyObject *name, *bases, *dict; local
2468 PyObject *mro, *res, *base, *dict; local
3546 PyObject *dict = type->tp_dict; local
3583 PyObject *dict = type->tp_dict; local
3602 PyObject *dict = type->tp_dict; local
3725 PyObject *dict = type->tp_dict; local
3936 PyObject *dict, *bases; local
6311 PyObject *ref, *subclasses, *dict; local
6371 PyObject *dict = type->tp_dict; local
6471 PyObject *mro, *res, *tmp, *dict; local
    [all...]
unicodeobject.c 8247 PyObject *dict = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
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);
735 Dict_type = make_type("Dict", expr_type, Dict_fields, 2);
    [all...]
  /external/libxml2/
parser.c 1076 ctxt->str_xml = xmlDictLookup(ctxt->dict, BAD_CAST "xml", 3);
1077 ctxt->str_xmlns = xmlDictLookup(ctxt->dict, BAD_CAST "xmlns", 5);
1078 ctxt->str_xml_ns = xmlDictLookup(ctxt->dict, XML_XML_NAMESPACE, 36);
14811 xmlDictPtr dict; local
    [all...]
xmlregexp.c 6346 xmlDictPtr dict; member in struct:_xmlExpCtxt
    [all...]
  /external/python/cpython2/Lib/test/
test_descr.py 189 # Testing dict operations...
190 if hasattr(dict, '__cmp__'): # PyPy has only rich comparison on dicts
211 for i in dict.__iter__(d):
223 dict = {'a': a, 'b': b}
229 res = eval(expr, dict)
236 res = eval(expr, dict)
410 # Testing Python subclass of dict...
411 self.assertTrue(issubclass(dict, dict))
412 self.assertIsInstance({}, dict)
2216 dict = {1:2, 3:4, 'a':1j} variable in class:.test_dict_constructors.Mapping
    [all...]
  /external/python/cpython2/Modules/
cPickle.c 56 #define DICT 'd'
99 * batch_list/dict() pumps out before doing APPENDS/SETITEMS. Nothing will
3831 PyObject *dict; local
3854 PyObject *dict, *key, *value; local
4511 PyObject *value = 0, *key = 0, *dict = 0; local
4613 PyObject *dict; local
    [all...]
  /external/python/cpython2/Python/
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...]
  /external/python/cpython3/Lib/test/
_test_multiprocessing.py 3917 dict = property(operator.attrgetter('manager.dict')) variable in class:ManagerMixin
    [all...]
test_descr.py 187 # Testing dict operations...
205 for i in dict.__iter__(d):
217 dict = {'a': a, 'b': b}
223 res = eval(expr, dict)
230 res = eval(expr, dict)
398 # Testing Python subclass of dict...
399 self.assertTrue(issubclass(dict, dict))
400 self.assertIsInstance({}, dict)
401 d = dict()
2304 dict = {1:2, 3:4, 'a':1j} variable in class:.test_dict_constructors.Mapping
    [all...]
  /external/python/cpython3/Modules/_decimal/
_decimal.c 399 PyObject *dict; local
401 dict = PyDict_New();
402 if (dict == NULL) {
408 if (PyDict_SetItem(dict, cm->ex, b) < 0) {
409 Py_DECREF(dict);
414 return dict;
427 "argument must be a signal dict");
433 "invalid signal dict");
444 "invalid signal dict");
1585 PyObject *dict; local
1681 PyObject *dict; local
    [all...]
  /external/python/cpython3/Modules/
_testcapimodule.c 181 PyObject *dict = PyDict_New(); local
184 if (dict == NULL)
192 if (PyDict_SetItem(dict, v, v) < 0) {
199 while (PyDict_Next(dict, &pos, &k, &v)) {
207 if (PyDict_SetItem(dict, k, o) < 0) {
214 Py_DECREF(dict);
219 "test_dict_iteration: dict iteration went wrong ");
267 "dict_hassplittable() argument must be dict, not '%s'",
2021 PyObject *tuple, *dict = NULL; local
2826 PyObject *dict = NULL; local
4017 PyDictObject *dict; local
    [all...]
_pickle.c 48 DICT = 'd',
100 batch_list/dict() pumps out before doing APPENDS/SETITEMS. Nothing will
225 "copyreg.dispatch_table should be a dict, not %.200s",
235 "copyreg._extension_registry should be a dict, "
245 "copyreg._inverted_registry should be a dict, "
254 "copyreg._extension_cache should be a dict, "
270 "_compat_pickle.NAME_MAPPING should be a dict, not %.200s",
280 "_compat_pickle.IMPORT_MAPPING should be a dict, "
291 "_compat_pickle.REVERSE_NAME_MAPPING should be a dict, "
301 "_compat_pickle.REVERSE_IMPORT_MAPPING should be a dict, "
5074 PyObject *dict; local
5112 PyObject *dict, *key, *value; local
5885 PyObject *dict; local
6047 PyObject *dict; local
    [all...]
  /external/python/cpython3/Python/
Python-ast.c 509 PyObject *dict; member in struct:__anon33587
515 Py_CLEAR(self->dict);
522 Py_VISIT(self->dict);
529 Py_CLEAR(self->dict);
590 PyObject *dict = _PyObject_GetAttrId(self, &PyId___dict__); local
591 if (dict == NULL) {
597 if (dict) {
598 res = Py_BuildValue("O()O", Py_TYPE(self), dict);
599 Py_DECREF(dict);
650 offsetof(AST_object, dict),/* tp_dictoffset *
    [all...]
ceval.c 5238 PyObject *dict, *name, *value; local
    [all...]
compile.c 395 PyObject *dict = PyDict_New(); local
396 if (!dict) return NULL;
402 Py_DECREF(dict);
407 if (k == NULL || PyDict_SetItem(dict, k, v) < 0) {
410 Py_DECREF(dict);
416 return dict;
419 /* Return new dict containing names from src that match scope(s).
422 either scope_type or flag is set, insert it into the new dict. The
1112 compiler_add_o(struct compiler *c, PyObject *dict, PyObject *o)
3026 PyObject *dict = c->u->u_names; local
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
readdwarf3.c 3974 WordFM* dict; \/* TyEnt* -> void *\/ local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_descr.py 189 # Testing dict operations...
190 if hasattr(dict, '__cmp__'): # PyPy has only rich comparison on dicts
211 for i in dict.__iter__(d):
223 dict = {'a': a, 'b': b}
229 res = eval(expr, dict)
236 res = eval(expr, dict)
402 # Testing Python subclass of dict...
403 self.assertTrue(issubclass(dict, dict))
404 self.assertIsInstance({}, dict)
2206 dict = {1:2, 3:4, 'a':1j} variable in class:.test_dict_constructors.Mapping
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_descr.py 189 # Testing dict operations...
190 if hasattr(dict, '__cmp__'): # PyPy has only rich comparison on dicts
211 for i in dict.__iter__(d):
223 dict = {'a': a, 'b': b}
229 res = eval(expr, dict)
236 res = eval(expr, dict)
402 # Testing Python subclass of dict...
403 self.assertTrue(issubclass(dict, dict))
404 self.assertIsInstance({}, dict)
2206 dict = {1:2, 3:4, 'a':1j} variable in class:.test_dict_constructors.Mapping
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_descr.py 189 # Testing dict operations...
190 if hasattr(dict, '__cmp__'): # PyPy has only rich comparison on dicts
211 for i in dict.__iter__(d):
223 dict = {'a': a, 'b': b}
229 res = eval(expr, dict)
236 res = eval(expr, dict)
402 # Testing Python subclass of dict...
403 self.assertTrue(issubclass(dict, dict))
404 self.assertIsInstance({}, dict)
2206 dict = {1:2, 3:4, 'a':1j} variable in class:.test_dict_constructors.Mapping
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_descr.py 189 # Testing dict operations...
190 if hasattr(dict, '__cmp__'): # PyPy has only rich comparison on dicts
211 for i in dict.__iter__(d):
223 dict = {'a': a, 'b': b}
229 res = eval(expr, dict)
236 res = eval(expr, dict)
402 # Testing Python subclass of dict...
403 self.assertTrue(issubclass(dict, dict))
404 self.assertIsInstance({}, dict)
2206 dict = {1:2, 3:4, 'a':1j} variable in class:.test_dict_constructors.Mapping
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/felix/org.apache.felix.bundlerepository/1.6.6/
org.apache.felix.bundlerepository-1.6.6.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
unicodeobject.c 8351 PyObject *dict = NULL; local
    [all...]
  /external/python/cpython2/Objects/
typeobject.c 907 /* Clear the instance dict (if any), to break cycles involving only
938 clear_slots(), or DECREF the dict, or clear weakrefs. */
994 dict. */
1029 /* If we added a dict, DECREF it */
1033 PyObject *dict = *dictptr; local
1034 if (dict != NULL) {
1035 Py_DECREF(dict);
1873 PyObject *dict; local
1909 PyObject *dict; local
2093 PyObject *name, *bases, *dict; local
2529 PyObject *mro, *res, *base, *dict; local
3666 PyObject *dict = type->tp_dict; local
3705 PyObject *dict = type->tp_dict; local
3726 PyObject *dict = type->tp_dict; local
3851 PyObject *dict = type->tp_dict; local
4062 PyObject *dict, *bases; local
6444 PyObject *ref, *subclasses, *dict; local
6504 PyObject *dict = type->tp_dict; local
6606 PyObject *mro, *res, *tmp, *dict; local
    [all...]
unicodeobject.c 8364 PyObject *dict = NULL; local
    [all...]

Completed in 1422 milliseconds

<<111213141516