Home
last modified time | relevance | path

Searched refs:PyDict_Type (Results 1 – 22 of 22) sorted by relevance

/third_party/python/Modules/
Dxxsubtype.c182 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.c2120 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.c4319 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.c397 if (!PyArg_ParseTuple(args, "O|O!:Element", &tag, &PyDict_Type, &attrib)) in element_init()
598 &PyDict_Type, &attrib)) { in subelement()
D_testcapimodule.c4962 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/
Ddictobject.h15 PyAPI_DATA(PyTypeObject) PyDict_Type;
19 #define PyDict_CheckExact(op) Py_IS_TYPE(op, &PyDict_Type)
/third_party/python/Objects/
Dodictobject.c1416 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()
Ddictobject.c659 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
Dobject.c1823 INIT_TYPE(PyDict_Type); in _PyTypes_Init()
Dtypeobject.c3293 &PyDict_Type, &orig_dict)) in type_new()
5731 else if (PyType_IsSubtype(base, &PyDict_Type)) { in inherit_special()
/third_party/python/Modules/_ctypes/
Dstgdict.c22 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.c2869 &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/
Ddict.rst16 .. c:var:: PyTypeObject PyDict_Type
/third_party/python/Doc/data/
Dstable_abi.dat117 var,PyDict_Type,3.2,
/third_party/python/PC/
Dpython3dll.c742 EXPORT_DATA(PyDict_Type)
/third_party/python/Misc/
Dstable_abi.txt502 data PyDict_Type
/third_party/python/Python/
Dbltinmodule.c3019 SETBUILTIN("dict", &PyDict_Type); in _PyBuiltin_Init()
Dcompile.c4128 return &PyDict_Type; in infer_type()
/third_party/python/Tools/c-analyzer/
DTODO706 Objects/dictobject.c:PyDict_Type PyTypeObject PyDict_Type
/third_party/protobuf/python/google/protobuf/pyext/
Dmessage.cc208 &PyDict_Type, &dict)) { in New()
/third_party/python/Lib/test/
Dclinic.test140 f: object(subclass_of="&PyDict_Type")
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv1654 Objects/dictobject.c - PyDict_Type -