/external/python/cpython3/Modules/_testlimitedcapi/ |
D | heaptype_relative.c | 77 PyObject *self, PyTypeObject *defining_class, in var_heaptype_set_data_to_3s() argument 80 void *data_ptr = PyObject_GetTypeData(self, defining_class); in var_heaptype_set_data_to_3s() 84 Py_ssize_t data_size = PyType_GetTypeDataSize(defining_class); in var_heaptype_set_data_to_3s() 93 var_heaptype_get_data(PyObject *self, PyTypeObject *defining_class, in var_heaptype_get_data() argument 96 void *data_ptr = PyObject_GetTypeData(self, defining_class); in var_heaptype_get_data() 100 Py_ssize_t data_size = PyType_GetTypeDataSize(defining_class); in var_heaptype_get_data()
|
/external/python/cpython3/Modules/ |
D | xxlimited.c | 200 Xxo_demo(XxoObject *self, PyTypeObject *defining_class, in Xxo_demo() argument 220 if (PyObject_TypeCheck(o, defining_class)) { in Xxo_demo()
|
D | _testmultiphase.c | 216 PyTypeObject *defining_class, in _StateAccessType_increment_count_noclinic() argument 245 meth_state *m_state = PyType_GetModuleState(defining_class); in _StateAccessType_increment_count_noclinic()
|
D | posixmodule.c | 15555 DirEntry_test_mode(PyTypeObject *defining_class, DirEntry *self, 15567 os_DirEntry_is_symlink_impl(DirEntry *self, PyTypeObject *defining_class) in os_DirEntry_is_symlink_impl() argument 15577 return DirEntry_test_mode(defining_class, self, 0, S_IFLNK); in os_DirEntry_is_symlink_impl() 15580 return DirEntry_test_mode(defining_class, self, 0, S_IFLNK); in os_DirEntry_is_symlink_impl() 15663 DirEntry_get_lstat(PyTypeObject *defining_class, DirEntry *self) in DirEntry_get_lstat() argument 15666 PyObject *module = PyType_GetModule(defining_class); in DirEntry_get_lstat() 15687 os_DirEntry_stat_impl(DirEntry *self, PyTypeObject *defining_class, in os_DirEntry_stat_impl() argument 15692 return DirEntry_get_lstat(defining_class, self); in os_DirEntry_stat_impl() 15696 int result = os_DirEntry_is_symlink_impl(self, defining_class); in os_DirEntry_stat_impl() 15701 PyObject *module = PyType_GetModule(defining_class); in os_DirEntry_stat_impl() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_enum.py | 5092 defining_class=object, object=EnumType), 5094 defining_class=EnumType, object=self.Color.__contains__), 5096 defining_class=self.Color, object='...'), 5098 defining_class=EnumType, object=self.Color.__getitem__), 5100 defining_class=EnumType, object=self.Color.__iter__), 5102 defining_class=object, object=getattr(self.Color, '__init_subclass__')), 5104 defining_class=EnumType, object=self.Color.__len__), 5106 defining_class=EnumType, object=EnumType.__members__), 5108 defining_class=self.Color, object=__name__), 5110 defining_class=self.Color, object='Color'), [all …]
|
/external/python/cpython3/Doc/c-api/ |
D | structures.rst | 218 PyTypeObject *defining_class, 336 ``METH_FASTCALL | METH_KEYWORDS`` with ``defining_class`` argument added after 420 The *cls* parameter will be passed as the *defining_class*
|
/external/python/cpython3/Doc/howto/ |
D | isolating-extensions.rst | 513 PyTypeObject *defining_class, // defining class 525 PyTypeObject *defining_class, 530 my_struct *state = (my_struct*)PyType_GetModuleState(defining_class);
|
/external/python/cpython3/Modules/clinic/ |
D | posixmodule.c.h | 11454 os_DirEntry_is_symlink_impl(DirEntry *self, PyTypeObject *defining_class); 11457 os_DirEntry_is_symlink(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssiz… in os_DirEntry_is_symlink() argument 11466 _return_value = os_DirEntry_is_symlink_impl(self, defining_class); in os_DirEntry_is_symlink() 11514 os_DirEntry_stat_impl(DirEntry *self, PyTypeObject *defining_class, 11518 os_DirEntry_stat(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t na… in os_DirEntry_stat() argument 11562 return_value = os_DirEntry_stat_impl(self, defining_class, follow_symlinks); in os_DirEntry_stat() 11578 os_DirEntry_is_dir_impl(DirEntry *self, PyTypeObject *defining_class, 11582 os_DirEntry_is_dir(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t … in os_DirEntry_is_dir() argument 11627 _return_value = os_DirEntry_is_dir_impl(self, defining_class, follow_symlinks); in os_DirEntry_is_dir() 11647 os_DirEntry_is_file_impl(DirEntry *self, PyTypeObject *defining_class, [all …]
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.11.0b1.rst | 2002 the ``defining_class`` parameter.
|