Home
last modified time | relevance | path

Searched refs:Py_TPFLAGS_HAVE_INPLACEOPS (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dobject.h576 #define Py_TPFLAGS_HAVE_INPLACEOPS (1L<<3) macro
642 Py_TPFLAGS_HAVE_INPLACEOPS | \
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dobject.h564 #define Py_TPFLAGS_HAVE_INPLACEOPS (1L<<3) macro
630 Py_TPFLAGS_HAVE_INPLACEOPS | \
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dtypeobject.c3671 if ((type->tp_flags & Py_TPFLAGS_HAVE_INPLACEOPS) !=
3672 (base->tp_flags & Py_TPFLAGS_HAVE_INPLACEOPS)) {
3675 type->tp_flags &= ~Py_TPFLAGS_HAVE_INPLACEOPS;
3678 Py_TPFLAGS_HAVE_INPLACEOPS;
Dabstract.c1275 PyType_HasFeature((t)->ob_type, Py_TPFLAGS_HAVE_INPLACEOPS)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dtypeobject.c3636 if ((type->tp_flags & Py_TPFLAGS_HAVE_INPLACEOPS) !=
3637 (base->tp_flags & Py_TPFLAGS_HAVE_INPLACEOPS)) {
3640 type->tp_flags &= ~Py_TPFLAGS_HAVE_INPLACEOPS;
3643 Py_TPFLAGS_HAVE_INPLACEOPS;
Dabstract.c1275 PyType_HasFeature((t)->ob_type, Py_TPFLAGS_HAVE_INPLACEOPS)