/external/python/cpython2/Mac/Modules/ |
D | Nav.c | 464 } else if (!PyArg_ParseTuple(args, "O!", &PyDict_Type, &dict)) in nav_NavGetFile() 498 } else if (!PyArg_ParseTuple(args, "O!", &PyDict_Type, &dict)) in nav_NavPutFile() 531 } else if (!PyArg_ParseTuple(args, "lO!", &action, &PyDict_Type, &dict)) in nav_NavAskSaveChanges() 560 } else if (!PyArg_ParseTuple(args, "O!", &PyDict_Type, &dict)) in nav_NavCustomAskSaveChanges() 589 } else if (!PyArg_ParseTuple(args, "O!", &PyDict_Type, &dict)) in nav_NavAskDiscardChanges() 622 } else if (!PyArg_ParseTuple(args, "O!", &PyDict_Type, &dict)) in nav_NavChooseFile() 655 } else if (!PyArg_ParseTuple(args, "O!", &PyDict_Type, &dict)) in nav_NavChooseFolder() 688 } else if (!PyArg_ParseTuple(args, "O!", &PyDict_Type, &dict)) in nav_NavChooseVolume() 721 } else if (!PyArg_ParseTuple(args, "O!", &PyDict_Type, &dict)) in nav_NavChooseObject() 753 } else if (!PyArg_ParseTuple(args, "O!", &PyDict_Type, &dict)) in nav_NavNewFolder()
|
/external/python/cpython2/Modules/ |
D | xxsubtype.c | 182 if (PyDict_Type.tp_init((PyObject *)self, args, kwds) < 0) in spamdict_init() 225 DEFERRED_ADDRESS(&PyDict_Type), /* tp_base */ 269 spamdict_type.tp_base = &PyDict_Type; in initxxsubtype()
|
D | _collectionsmodule.c | 1560 PyDict_Type.tp_dealloc((PyObject *)dd); in defdict_dealloc() 1580 sts = PyDict_Type.tp_print((PyObject *)dd, fp, 0); in defdict_print() 1593 baserepr = PyDict_Type.tp_repr((PyObject *)dd); in defdict_repr() 1628 return PyDict_Type.tp_traverse(self, visit, arg); in defdict_traverse() 1635 return PyDict_Type.tp_clear((PyObject *)dd); in defdict_tp_clear() 1664 result = PyDict_Type.tp_init(self, newargs, kwds); in defdict_init() 1716 DEFERRED_ADDRESS(&PyDict_Type), /* tp_base */ 1749 defdict_type.tp_base = &PyDict_Type; in init_collections()
|
D | _json.c | 987 rval = PyObject_CallFunctionObjArgs((PyObject *)(&PyDict_Type), in _parse_object_str() 1114 rval = PyObject_CallFunctionObjArgs((PyObject *)(&PyDict_Type), in _parse_object_unicode()
|
D | _elementtree.c | 481 &PyDict_Type, &attrib)) in element() 512 &PyDict_Type, &attrib)) in subelement()
|
D | _hotshot.c | 1100 &PyDict_Type, &globals, in profiler_runcode()
|
D | cPickle.c | 2705 if (type == &PyDict_Type) { in save()
|
/external/python/cpython2/Include/ |
D | dictobject.h | 91 PyAPI_DATA(PyTypeObject) PyDict_Type; 101 #define PyDict_CheckExact(op) (Py_TYPE(op) == &PyDict_Type)
|
/external/python/cpython2/Modules/_sqlite/ |
D | sqlitecompat.h | 39 #define PyDict_CheckExact(op) ((op)->ob_type == &PyDict_Type)
|
/external/python/cpython2/Modules/_ctypes/ |
D | stgdict.c | 22 if (PyDict_Type.tp_init((PyObject *)self, args, kwds) < 0) in PyCStgDict_init() 48 PyDict_Type.tp_dealloc((PyObject *)self); in PyCStgDict_dealloc()
|
D | ctypes.h | 11 #define PyDict_CheckExact(ob) (Py_TYPE(ob) == &PyDict_Type)
|
D | _ctypes.c | 5605 PyCStgDict_Type.tp_base = &PyDict_Type; in init_ctypes()
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 14 PyDict_Type
|
/external/python/cpython2/Objects/ |
D | dictobject.c | 261 assert (Py_TYPE(mp) == &PyDict_Type); in PyDict_New() 277 mp = PyObject_GC_New(PyDictObject, &PyDict_Type); in PyDict_New() 1045 if (numfree < PyDict_MAXFREELIST && Py_TYPE(mp) == &PyDict_Type) in dict_dealloc() 2365 if (type == &PyDict_Type) in dict_new() 2403 PyTypeObject PyDict_Type = { variable
|
D | funcobject.c | 378 &PyDict_Type, &globals, in func_new()
|
D | object.c | 2113 if (PyType_Ready(&PyDict_Type) < 0) in _Py_ReadyTypes()
|
D | typeobject.c | 2130 &PyDict_Type, &dict)) in type_new() 3844 else if (PyType_IsSubtype(base, &PyDict_Type))
|
/external/python/cpython2/Doc/c-api/ |
D | dict.rst | 16 .. c:var:: PyTypeObject PyDict_Type
|
/external/python/cpython2/RISCOS/Modules/ |
D | drawfmodule.c | 334 if(!PyArg_ParseTuple(arg,"O!",&PyDict_Type,&d)) return NULL; in DrawF_FontTable()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 285 "PyDict_Type"
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 738 &PyDict_Type, &globals, in builtin_execfile() 2720 SETBUILTIN("dict", &PyDict_Type); in _PyBuiltin_Init()
|
/external/protobuf/python/google/protobuf/pyext/ |
D | message.cc | 222 &PyDict_Type, &dict)) { in New()
|