Searched refs:tp_flags (Results 1 - 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dtypeobject.c92 type->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG;
137 type->tp_flags &= ~(Py_TPFLAGS_HAVE_VERSION_TAG|
185 type->tp_flags |= Py_TPFLAGS_VALID_VERSION_TAG;
193 {"__flags__", T_LONG, offsetof(PyTypeObject, tp_flags), READONLY},
208 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) {
230 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
274 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) {
295 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
352 type->tp_flags |= Py_TPFLAGS_IS_ABSTRACT;
354 type->tp_flags
[all...]
H A Dobject.c1282 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dtypeobject.c92 type->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG;
137 type->tp_flags &= ~(Py_TPFLAGS_HAVE_VERSION_TAG|
185 type->tp_flags |= Py_TPFLAGS_VALID_VERSION_TAG;
193 {"__flags__", T_LONG, offsetof(PyTypeObject, tp_flags), READONLY},
208 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) {
229 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
270 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) {
291 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) {
344 type->tp_flags |= Py_TPFLAGS_IS_ABSTRACT;
347 type->tp_flags
[all...]
H A Dobject.c1275 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/
H A Dlibpython.py284 For now, we use tp_flags, after doing some string comparisons on the
290 tp_flags = int(t.field('tp_flags'))
296 #print 'tp_flags = 0x%08x' % tp_flags
311 if tp_flags & Py_TPFLAGS_HEAPTYPE:
314 if tp_flags & Py_TPFLAGS_INT_SUBCLASS:
316 if tp_flags & Py_TPFLAGS_LONG_SUBCLASS:
318 if tp_flags & Py_TPFLAGS_LIST_SUBCLASS:
320 if tp_flags
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
H A DbgenObjectDefinition.py7 tp_flags = "Py_TPFLAGS_DEFAULT" variable in class:ObjectDefinition
300 Output("%s, /* tp_flags */", self.tp_flags)
371 tp_flags = "Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE" variable in class:PEP253Mixin
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dobject.h356 long tp_flags; member in struct:_typeobject
539 `Type flags (tp_flags)
553 Type definitions should use Py_TPFLAGS_DEFAULT for their tp_flags value.
659 #define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dobject.h356 long tp_flags; member in struct:_typeobject
527 `Type flags (tp_flags)
541 Type definitions should use Py_TPFLAGS_DEFAULT for their tp_flags value.
647 #define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0)

Completed in 66 milliseconds