Searched refs:defining_class (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Modules/ |
D | xxlimited.c | 180 Xxo_demo(XxoObject *self, PyTypeObject *defining_class, in Xxo_demo() argument 201 if (PyObject_TypeCheck(o, defining_class)) { in Xxo_demo()
|
D | _testmultiphase.c | 194 PyTypeObject *defining_class, in _StateAccessType_increment_count_noclinic() argument 223 meth_state *m_state = PyType_GetModuleState(defining_class); in _StateAccessType_increment_count_noclinic()
|
D | posixmodule.c | 13443 DirEntry_test_mode(PyTypeObject *defining_class, DirEntry *self, 13455 os_DirEntry_is_symlink_impl(DirEntry *self, PyTypeObject *defining_class) in os_DirEntry_is_symlink_impl() argument 13465 return DirEntry_test_mode(defining_class, self, 0, S_IFLNK); in os_DirEntry_is_symlink_impl() 13468 return DirEntry_test_mode(defining_class, self, 0, S_IFLNK); in os_DirEntry_is_symlink_impl() 13530 DirEntry_get_lstat(PyTypeObject *defining_class, DirEntry *self) in DirEntry_get_lstat() argument 13533 PyObject *module = PyType_GetModule(defining_class); in DirEntry_get_lstat() 13555 os_DirEntry_stat_impl(DirEntry *self, PyTypeObject *defining_class, in os_DirEntry_stat_impl() argument 13560 return DirEntry_get_lstat(defining_class, self); in os_DirEntry_stat_impl() 13564 int result = os_DirEntry_is_symlink_impl(self, defining_class); in os_DirEntry_stat_impl() 13569 PyObject *module = PyType_GetModule(defining_class); in os_DirEntry_stat_impl() [all …]
|
/third_party/python/Lib/test/ |
D | test_enum.py | 3299 defining_class=object, object=EnumMeta), 3301 defining_class=self.Color, object='An enumeration.'), 3303 defining_class=EnumMeta, object=EnumMeta.__members__), 3305 defining_class=self.Color, object=__name__), 3307 defining_class=self.Color, object=self.Color.blue), 3309 defining_class=self.Color, object=self.Color.green), 3311 defining_class=self.Color, object=self.Color.red), 3313 defining_class=Enum, object=Enum.__dict__['name']), 3315 defining_class=Enum, object=Enum.__dict__['value']),
|
/third_party/python/Modules/clinic/ |
D | posixmodule.c.h | 8251 os_DirEntry_is_symlink_impl(DirEntry *self, PyTypeObject *defining_class); 8254 os_DirEntry_is_symlink(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssiz… in os_DirEntry_is_symlink() argument 8265 _return_value = os_DirEntry_is_symlink_impl(self, defining_class); in os_DirEntry_is_symlink() 8285 os_DirEntry_stat_impl(DirEntry *self, PyTypeObject *defining_class, 8289 os_DirEntry_stat(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t na… in os_DirEntry_stat() argument 8300 return_value = os_DirEntry_stat_impl(self, defining_class, follow_symlinks); in os_DirEntry_stat() 8316 os_DirEntry_is_dir_impl(DirEntry *self, PyTypeObject *defining_class, 8320 os_DirEntry_is_dir(DirEntry *self, PyTypeObject *defining_class, PyObject *const *args, Py_ssize_t … in os_DirEntry_is_dir() argument 8332 _return_value = os_DirEntry_is_dir_impl(self, defining_class, follow_symlinks); in os_DirEntry_is_dir() 8352 os_DirEntry_is_file_impl(DirEntry *self, PyTypeObject *defining_class, [all …]
|
/third_party/python/Doc/c-api/ |
D | structures.rst | 225 PyTypeObject *defining_class, 324 ``METH_FASTCALL | METH_KEYWORDS`` with ``defining_class`` argument added after
|
/third_party/python/Doc/howto/ |
D | clinic.rst | 1218 Example from ``Modules/zlibmodule.c``. First, ``defining_class`` is added to 1224 cls: defining_class 1251 The ``defining_class`` converter is not compatible with ``__init__`` and ``__new__`` 1254 It is not possible to use ``defining_class`` with slot methods. In order to
|