/third_party/python/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 */ 267 spamdict_type.tp_base = &PyDict_Type; in xxsubtype_exec()
|
D | _collectionsmodule.c | 2120 PyDict_Type.tp_dealloc((PyObject *)dd); in defdict_dealloc() 2129 baserepr = PyDict_Type.tp_repr((PyObject *)dd); in defdict_repr() 2196 return PyDict_Type.tp_traverse(self, visit, arg); in defdict_traverse() 2203 return PyDict_Type.tp_clear((PyObject *)dd); in defdict_tp_clear() 2232 result = PyDict_Type.tp_init(self, newargs, kwds); in defdict_init() 2284 DEFERRED_ADDRESS(&PyDict_Type), /* tp_base */ 2332 dict_get = _PyType_LookupId(&PyDict_Type, &PyId_get); in _collections__count_elements_impl() 2334 dict_setitem = _PyType_LookupId(&PyDict_Type, &PyId___setitem__); in _collections__count_elements_impl() 2609 defdict_type.tp_base = &PyDict_Type; in collections_exec()
|
D | _pickle.c | 4319 if (type == &PyDict_Type) { in save() 4873 Py_INCREF((PyObject *)&PyDict_Type); in _pickle_PicklerMemoProxy___reduce___impl() 4874 PyTuple_SET_ITEM(reduce_value, 0, (PyObject *)&PyDict_Type); in _pickle_PicklerMemoProxy___reduce___impl() 7385 Py_INCREF((PyObject *)&PyDict_Type); in _pickle_UnpicklerMemoProxy___reduce___impl() 7386 PyTuple_SET_ITEM(reduce_value, 0, (PyObject *)&PyDict_Type); in _pickle_UnpicklerMemoProxy___reduce___impl()
|
D | _elementtree.c | 397 if (!PyArg_ParseTuple(args, "O|O!:Element", &tag, &PyDict_Type, &attrib)) in element_init() 598 &PyDict_Type, &attrib)) { in subelement()
|
D | _testcapimodule.c | 4962 if (!PyArg_ParseTuple(args, "O!", &PyDict_Type, &dict)) in dict_get_version() 5463 PyObject *pykwargs = PyObject_Vectorcall((PyObject*)&PyDict_Type, in meth_fastcall_keywords()
|
/third_party/python/Include/ |
D | dictobject.h | 15 PyAPI_DATA(PyTypeObject) PyDict_Type; 19 #define PyDict_CheckExact(op) Py_IS_TYPE(op, &PyDict_Type)
|
/third_party/python/Objects/ |
D | odictobject.c | 1416 PyDict_Type.tp_dealloc((PyObject *)self); in odict_dealloc() 1508 return PyDict_Type.tp_traverse((PyObject *)od, visit, arg); in odict_traverse() 1535 cmp = PyDict_Type.tp_richcompare(v, w, op); in odict_richcompare() 1626 &PyDict_Type, /* tp_base */ 1645 return PyDict_Type.tp_new(&PyODict_Type, NULL, NULL); in PyODict_New()
|
D | dictobject.c | 659 assert (Py_IS_TYPE(mp, &PyDict_Type)); in new_dict() 663 mp = PyObject_GC_New(PyDictObject, &PyDict_Type); in new_dict() 2083 if (state->numfree < PyDict_MAXFREELIST && Py_IS_TYPE(mp, &PyDict_Type)) { in dict_dealloc() 2773 split_copy = PyObject_GC_New(PyDictObject, &PyDict_Type); in PyDict_Copy() 3466 if (type == &PyDict_Type) { in dict_new() 3534 PyTypeObject PyDict_Type = { variable
|
D | object.c | 1823 INIT_TYPE(PyDict_Type); in _PyTypes_Init()
|
D | typeobject.c | 3293 &PyDict_Type, &orig_dict)) in type_new() 5731 else if (PyType_IsSubtype(base, &PyDict_Type)) { in inherit_special()
|
/third_party/python/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.c | 2869 &PyDict_Type, &dict, &data, &len)) in PyCData_setstate() 5705 TYPE_READY_BASE(&PyCStgDict_Type, &PyDict_Type); in _ctypes_add_types()
|
/third_party/python/Doc/c-api/ |
D | dict.rst | 16 .. c:var:: PyTypeObject PyDict_Type
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 117 var,PyDict_Type,3.2,
|
/third_party/python/PC/ |
D | python3dll.c | 742 EXPORT_DATA(PyDict_Type)
|
/third_party/python/Misc/ |
D | stable_abi.txt | 502 data PyDict_Type
|
/third_party/python/Python/ |
D | bltinmodule.c | 3019 SETBUILTIN("dict", &PyDict_Type); in _PyBuiltin_Init()
|
D | compile.c | 4128 return &PyDict_Type; in infer_type()
|
/third_party/python/Tools/c-analyzer/ |
D | TODO | 706 Objects/dictobject.c:PyDict_Type PyTypeObject PyDict_Type
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | message.cc | 208 &PyDict_Type, &dict)) { in New()
|
/third_party/python/Lib/test/ |
D | clinic.test | 140 f: object(subclass_of="&PyDict_Type")
|
/third_party/python/Tools/c-analyzer/cpython/ |
D | ignored.tsv | 1654 Objects/dictobject.c - PyDict_Type -
|