Home
last modified time | relevance | path

Searched refs:PyType_HasFeature (Results 1 – 14 of 14) sorted by relevance

/third_party/python/Include/
Dobjimpl.h161 #define PyType_IS_GC(t) PyType_HasFeature((t), Py_TPFLAGS_HAVE_GC)
Dobject.h722 PyType_HasFeature(PyTypeObject *type, unsigned long feature) in PyType_HasFeature() function
734 #define PyType_FastSubclass(type, flag) PyType_HasFeature(type, flag)
/third_party/python/Include/cpython/
Dabstract.h70 if (!PyType_HasFeature(tp, Py_TPFLAGS_HAVE_VECTORCALL)) { in PyVectorcall_Function()
/third_party/python/Modules/
D_abc.c488 if (PyType_HasFeature(child, Py_TPFLAGS_IMMUTABLETYPE) || in set_collection_flag_recursive()
Dpyexpat.c1600 assert(!PyType_HasFeature(state->xml_parse_type, Py_TPFLAGS_VALID_VERSION_TAG)); in init_handler_descrs()
D_testcapimodule.c3770 if (!PyType_Check(obj) || !PyType_HasFeature(tp, Py_TPFLAGS_HEAPTYPE)) { in with_tp_del()
3784 if (!PyType_Check(obj) || !PyType_HasFeature(tp, Py_TPFLAGS_HEAPTYPE)) { in without_gc()
/third_party/python/Doc/c-api/
Dtype.rst60 .. c:function:: int PyType_HasFeature(PyTypeObject *o, int feature)
Dtypeobj.rst1038 :c:func:`PyType_HasFeature` takes a type and a flags value, *tp* and *f*, and
/third_party/python/Doc/data/
Drefcounts.dat2314 PyType_HasFeature:int:::
2315 PyType_HasFeature:PyTypeObject*:o:0:
2316 PyType_HasFeature:int:feature::
/third_party/python/Misc/NEWS.d/
D3.9.0a4.rst888 Convert :c:func:`PyType_HasFeature`, :c:func:`PyType_Check` and
D3.9.0a6.rst1165 :c:func:`PyType_HasFeature` now always calls :c:func:`PyType_GetFlags` to
D3.10.0a1.rst3310 Revert :c:func:`PyType_HasFeature` change: it reads again directly the
/third_party/python/Python/
Dceval.c1046 match_self = PyType_HasFeature((PyTypeObject*)type, in match_class()
3419 if (co_opcache != NULL && PyType_HasFeature(type, Py_TPFLAGS_VALID_VERSION_TAG)) in _PyEval_EvalFrameDefault()
/third_party/python/Objects/
Dtypeobject.c5734 if (PyType_HasFeature(base, _Py_TPFLAGS_MATCH_SELF)) { in inherit_special()