/aosp_15_r20/external/python/cpython3/Modules/ |
D | _abc.c | 525 int result = PyObject_IsSubclass(subclass, self); in _abc__abc_register_impl() 535 result = PyObject_IsSubclass(self, subclass); in _abc__abc_register_impl() 782 int r = PyObject_IsSubclass(subclass, scls); in _abc__abc_subclasscheck_impl() 861 int r = PyObject_IsSubclass(subclass, rkey); in subclasscheck_check_registry()
|
/aosp_15_r20/external/python/cpython2/Python/ |
D | errors.c | 119 res = PyObject_IsSubclass(err, exc); in PyErr_GivenExceptionMatches() 178 if (!inclass || !PyObject_IsSubclass(inclass, type)) { in PyErr_NormalizeException()
|
D | _warnings.c | 153 is_subclass = PyObject_IsSubclass(category, cat); in get_filter() 581 rc = PyObject_IsSubclass(category, PyExc_Warning); in get_category()
|
/aosp_15_r20/external/python/cpython2/Doc/c-api/ |
D | type.rst | 76 :c:func:`PyObject_IsSubclass` to do the same check that :func:`issubclass`
|
D | object.rst | 208 *A*, if *A* is *B*, :c:func:`PyObject_IsSubclass` returns true. If *A* and *B* 214 .. c:function:: int PyObject_IsSubclass(PyObject *derived, PyObject *cls)
|
/aosp_15_r20/external/tensorflow/tensorflow/python/framework/ |
H A D | python_api_dispatcher.cc | 49 int result = PyObject_IsSubclass(py_class, registered_type.get()); in IsRegisteredDispatchableType()
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | _warnings.c | 363 is_subclass = PyObject_IsSubclass(category, cat); in get_filter() 919 rc = PyObject_IsSubclass(category, PyExc_Warning); in get_category()
|
D | errors.c | 342 is_subclass = PyObject_IsSubclass(inclass, type); in _PyErr_NormalizeException() 994 issubclass = PyObject_IsSubclass(exception, PyExc_ImportError); in PyErr_SetImportErrorSubclass()
|
D | bltinmodule.c | 2675 retval = PyObject_IsSubclass(cls, class_or_tuple); in builtin_issubclass_impl()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/ |
D | abstract.h | 862 PyAPI_FUNC(int) PyObject_IsSubclass(PyObject *object, PyObject *typeorclass);
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | abstract.h | 862 PyAPI_FUNC(int) PyObject_IsSubclass(PyObject *object, PyObject *typeorclass);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/ |
D | abstract.h | 862 PyAPI_FUNC(int) PyObject_IsSubclass(PyObject *object, PyObject *typeorclass);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/ |
D | abstract.h | 862 PyAPI_FUNC(int) PyObject_IsSubclass(PyObject *object, PyObject *typeorclass);
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/ |
D | abstract.h | 862 PyAPI_FUNC(int) PyObject_IsSubclass(PyObject *object, PyObject *typeorclass);
|
/aosp_15_r20/external/python/cpython2/Include/ |
D | abstract.h | 1377 PyAPI_FUNC(int) PyObject_IsSubclass(PyObject *object, PyObject *typeorclass);
|
/aosp_15_r20/external/pytorch/torch/csrc/jit/python/ |
H A D | python_sugared_value.cpp | 1006 int is_tuple_class = PyObject_IsSubclass(obj.ptr(), tuple_type); in isNamedTupleClass() 1063 int ret = PyObject_IsSubclass(obj.ptr(), enum_type_obj.ptr()); in isEnumClass()
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | type.rst | 78 :c:func:`PyObject_IsSubclass` to do the same check that :func:`issubclass`
|
D | object.rst | 239 .. c:function:: int PyObject_IsSubclass(PyObject *derived, PyObject *cls)
|
/aosp_15_r20/external/python/cpython2/PC/os2emx/ |
D | python27.def | 176 "PyObject_IsSubclass"
|
/aosp_15_r20/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1724 PyObject_IsSubclass:int::: 1725 PyObject_IsSubclass:PyObject*:derived:0: 1726 PyObject_IsSubclass:PyObject*:cls:0:
|
D | stable_abi.dat | 523 function,PyObject_IsSubclass,3.2,,
|
/aosp_15_r20/external/python/cpython3/PC/ |
D | python3dll.c | 472 EXPORT_FUNC(PyObject_IsSubclass)
|
/aosp_15_r20/external/python/cpython2/Objects/ |
D | abstract.c | 3020 PyObject_IsSubclass(PyObject *derived, PyObject *cls) function 3034 r = PyObject_IsSubclass(derived, item);
|
/aosp_15_r20/external/pytorch/torch/csrc/utils/ |
H A D | python_arg_parser.cpp | 722 if (PyObject_IsSubclass( in append_overloaded_arg()
|
/aosp_15_r20/external/tensorflow/tensorflow/python/eager/ |
H A D | pywrap_tfe_src.cc | 927 if (PyObject_IsSubclass(e, PyExc_Exception) <= 0) { in TFE_Py_RegisterExceptionClass() 944 if (PyObject_IsSubclass(e, PyExc_Exception) <= 0) { in TFE_Py_RegisterFallbackExceptionClass()
|