/third_party/python/Python/ |
D | Python-ast.c | 5343 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.c | 645 rc = PyObject_IsInstance(message, PyExc_Warning); in warn_explicit() 917 rc = PyObject_IsInstance(message, PyExc_Warning); in get_category()
|
D | bltinmodule.c | 2601 retval = PyObject_IsInstance(obj, class_or_tuple); in builtin_isinstance_impl()
|
D | ceval.c | 1011 if (PyObject_IsInstance(subject, type) <= 0) { in match_class()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0b2.rst | 17 Update uses of PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(),
|
D | 3.5.0a1.rst | 254 speed up `PyObject_IsInstance` and `PyObject_IsSubclass` in the common case
|
/third_party/python/Modules/_ctypes/ |
D | _ctypes.c | 792 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/ |
D | abstract.h | 859 PyAPI_FUNC(int) PyObject_IsInstance(PyObject *object, PyObject *typeorclass);
|
/third_party/python/Objects/ |
D | unionobject.c | 77 int res = PyObject_IsInstance(instance, arg); in union_instancecheck()
|
D | abstract.c | 2695 PyObject_IsInstance(PyObject *inst, PyObject *cls) in PyObject_IsInstance() function
|
/third_party/python/PC/ |
D | python3dll.c | 461 EXPORT_FUNC(PyObject_IsInstance)
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 505 function,PyObject_IsInstance,3.2,
|
D | refcounts.dat | 1720 PyObject_IsInstance:int::: 1721 PyObject_IsInstance:PyObject*:inst:0: 1722 PyObject_IsInstance:PyObject*:cls:0:
|
/third_party/python/Modules/ |
D | _asynciomodule.c | 2617 res = PyObject_IsInstance(exc, asyncio_CancelledError); in task_step_impl() 2894 res = PyObject_IsInstance(result, (PyObject*)&PyGen_Type); in task_step_impl()
|
D | _collectionsmodule.c | 538 rv = PyObject_IsInstance(other, (PyObject *)&deque_type); in deque_concat()
|
/third_party/python/Doc/c-api/ |
D | object.rst | 230 .. c:function:: int PyObject_IsInstance(PyObject *inst, PyObject *cls)
|
D | typeobj.rst | 1159 check, like :c:func:`PyObject_IsInstance`. Custom types that inherit
|
/third_party/python/Misc/ |
D | stable_abi.txt | 1091 function PyObject_IsInstance
|
D | HISTORY | 200 PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains() 25100 - New abstract APIs PyObject_IsInstance(), PyObject_IsSubclass()
|
/third_party/python/Tools/c-analyzer/ |
D | TODO | 334 Objects/abstract.c:PyObject_IsInstance():PyId___instancecheck__ _Py_IDENTIFIER(__instancecheck__)
|
/third_party/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 748 #define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type)
|
/third_party/python/Modules/_decimal/ |
D | _decimal.c | 3044 int is_rational = PyObject_IsInstance(w, Rational); in convert_op_cmp()
|
/third_party/python/Doc/whatsnew/ |
D | 3.5.rst | 2148 The :c:func:`PyObject_IsInstance` and :c:func:`PyObject_IsSubclass`
|