Home
last modified time | relevance | path

Searched refs:PyObject_IsInstance (Results 1 – 23 of 23) sorted by relevance

/third_party/python/Python/
DPython-ast.c5343 isinstance = PyObject_IsInstance(obj, tp); in obj2ast_mod()
5430 isinstance = PyObject_IsInstance(obj, tp); in obj2ast_mod()
5479 isinstance = PyObject_IsInstance(obj, tp); in obj2ast_mod()
5508 isinstance = PyObject_IsInstance(obj, tp); in obj2ast_mod()
5667 isinstance = PyObject_IsInstance(obj, tp); in obj2ast_stmt()
5828 isinstance = PyObject_IsInstance(obj, tp); in obj2ast_stmt()
5990 isinstance = PyObject_IsInstance(obj, tp); in obj2ast_stmt()
6173 isinstance = PyObject_IsInstance(obj, tp); in obj2ast_stmt()
6203 isinstance = PyObject_IsInstance(obj, tp); in obj2ast_stmt()
6253 isinstance = PyObject_IsInstance(obj, tp); in obj2ast_stmt()
[all …]
D_warnings.c645 rc = PyObject_IsInstance(message, PyExc_Warning); in warn_explicit()
917 rc = PyObject_IsInstance(message, PyExc_Warning); in get_category()
Dbltinmodule.c2601 retval = PyObject_IsInstance(obj, class_or_tuple); in builtin_isinstance_impl()
Dceval.c1011 if (PyObject_IsInstance(subject, type) <= 0) { in match_class()
/third_party/python/Misc/NEWS.d/
D3.5.0b2.rst17 Update uses of PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(),
D3.5.0a1.rst254 speed up `PyObject_IsInstance` and `PyObject_IsSubclass` in the common case
/third_party/python/Modules/_ctypes/
D_ctypes.c792 int res = PyObject_IsInstance(value, type); in CDataType_from_param()
809 res = PyObject_IsInstance(ob, dict->proto); in CDataType_from_param()
1180 switch (PyObject_IsInstance(value, typedict->proto)) { in PyCPointerType_from_param()
1711 res = PyObject_IsInstance(value, type); in c_wchar_p_from_param()
1778 res = PyObject_IsInstance(value, type); in c_char_p_from_param()
1886 res = PyObject_IsInstance(value, type); in c_void_p_from_param()
2263 res = PyObject_IsInstance(value, type); in PyCSimpleType_from_param()
3128 err = PyObject_IsInstance(value, type); in _PyCData_set()
5191 int res = PyObject_IsInstance(value, stgdict->proto); in Pointer_set_contents()
/third_party/python/Include/
Dabstract.h859 PyAPI_FUNC(int) PyObject_IsInstance(PyObject *object, PyObject *typeorclass);
/third_party/python/Objects/
Dunionobject.c77 int res = PyObject_IsInstance(instance, arg); in union_instancecheck()
Dabstract.c2695 PyObject_IsInstance(PyObject *inst, PyObject *cls) in PyObject_IsInstance() function
/third_party/python/PC/
Dpython3dll.c461 EXPORT_FUNC(PyObject_IsInstance)
/third_party/python/Doc/data/
Dstable_abi.dat505 function,PyObject_IsInstance,3.2,
Drefcounts.dat1720 PyObject_IsInstance:int:::
1721 PyObject_IsInstance:PyObject*:inst:0:
1722 PyObject_IsInstance:PyObject*:cls:0:
/third_party/python/Modules/
D_asynciomodule.c2617 res = PyObject_IsInstance(exc, asyncio_CancelledError); in task_step_impl()
2894 res = PyObject_IsInstance(result, (PyObject*)&PyGen_Type); in task_step_impl()
D_collectionsmodule.c538 rv = PyObject_IsInstance(other, (PyObject *)&deque_type); in deque_concat()
/third_party/python/Doc/c-api/
Dobject.rst230 .. c:function:: int PyObject_IsInstance(PyObject *inst, PyObject *cls)
Dtypeobj.rst1159 check, like :c:func:`PyObject_IsInstance`. Custom types that inherit
/third_party/python/Misc/
Dstable_abi.txt1091 function PyObject_IsInstance
DHISTORY200 PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains()
25100 - New abstract APIs PyObject_IsInstance(), PyObject_IsSubclass()
/third_party/python/Tools/c-analyzer/
DTODO334 Objects/abstract.c:PyObject_IsInstance():PyId___instancecheck__ _Py_IDENTIFIER(__instancecheck__)
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c748 #define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type)
/third_party/python/Modules/_decimal/
D_decimal.c3044 int is_rational = PyObject_IsInstance(w, Rational); in convert_op_cmp()
/third_party/python/Doc/whatsnew/
D3.5.rst2148 The :c:func:`PyObject_IsInstance` and :c:func:`PyObject_IsSubclass`