/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()
|
/third_party/boost/boost/python/converter/ |
D | pyobject_type.hpp | 24 return ::PyObject_IsInstance(x, (PyObject*)pytype); in check()
|
/third_party/boost/boost/python/numpy/ |
D | numpy_object_mgr_traits.hpp | 28 return ::PyObject_IsInstance(x, (PyObject*)get_pytype()); \
|
/third_party/boost/boost/python/ |
D | enum.hpp | 69 return PyObject_IsInstance( in convertible_from_python()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.0b2.rst | 17 Update uses of PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(),
|
/third_party/boost/libs/python/test/ |
D | extract.cpp | 32 bool is_list_2 = PyObject_IsInstance(x.ptr(), (PyObject*)&PyList_Type); in extract_list()
|
/third_party/boost/libs/python/src/object/ |
D | class.cpp | 243 if (a != 0 && PyObject_IsInstance(a, objects::static_data())) in class_setattro() 503 PyObject_IsInstance(scope().ptr(), upcast<PyObject>(&PyModule_Type)) in module_prefix()
|
/third_party/boost/libs/python/src/converter/ |
D | from_python.cpp | 290 if (!PyObject_IsInstance(source, python::upcast<PyObject>(type_))) in pytype_check()
|
/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/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/PC/ |
D | python3dll.c | 461 EXPORT_FUNC(PyObject_IsInstance)
|
/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)
|
/third_party/python/Misc/ |
D | stable_abi.txt | 1091 function PyObject_IsInstance
|
/third_party/python/Tools/c-analyzer/ |
D | TODO | 334 Objects/abstract.c:PyObject_IsInstance():PyId___instancecheck__ _Py_IDENTIFIER(__instancecheck__)
|
/third_party/flutter/skia/third_party/externals/libwebp/swig/ |
D | libwebp_python_wrap.c | 745 #define PyClass_Check(obj) PyObject_IsInstance(obj, (PyObject *)&PyType_Type)
|
/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()
|