Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dtypeobject.c92 type->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; in PyType_Modified()
137 type->tp_flags &= ~(Py_TPFLAGS_HAVE_VERSION_TAG| in type_mro_modified()
185 type->tp_flags |= Py_TPFLAGS_VALID_VERSION_TAG; in assign_version_tag()
193 {"__flags__", T_LONG, offsetof(PyTypeObject, tp_flags), READONLY},
208 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) { in type_name()
230 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) { in type_set_name()
274 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) { in type_module()
295 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) { in type_set_module()
352 type->tp_flags |= Py_TPFLAGS_IS_ABSTRACT; in type_set_abstractmethods()
354 type->tp_flags &= ~Py_TPFLAGS_IS_ABSTRACT; in type_set_abstractmethods()
[all …]
Dobject.c1282 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS)) in _PyObject_GetDictPtr()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dtypeobject.c92 type->tp_flags &= ~Py_TPFLAGS_VALID_VERSION_TAG; in PyType_Modified()
137 type->tp_flags &= ~(Py_TPFLAGS_HAVE_VERSION_TAG| in type_mro_modified()
185 type->tp_flags |= Py_TPFLAGS_VALID_VERSION_TAG; in assign_version_tag()
193 {"__flags__", T_LONG, offsetof(PyTypeObject, tp_flags), READONLY},
208 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) { in type_name()
229 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) { in type_set_name()
270 if (type->tp_flags & Py_TPFLAGS_HEAPTYPE) { in type_module()
291 if (!(type->tp_flags & Py_TPFLAGS_HEAPTYPE)) { in type_set_module()
344 type->tp_flags |= Py_TPFLAGS_IS_ABSTRACT; in type_set_abstractmethods()
347 type->tp_flags &= ~Py_TPFLAGS_IS_ABSTRACT; in type_set_abstractmethods()
[all …]
Dobject.c1275 if (!(tp->tp_flags & Py_TPFLAGS_HAVE_CLASS)) in _PyObject_GetDictPtr()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/gdb/
Dlibpython.py290 tp_flags = int(t.field('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 & Py_TPFLAGS_TUPLE_SUBCLASS:
322 if tp_flags & Py_TPFLAGS_STRING_SUBCLASS:
324 if tp_flags & Py_TPFLAGS_UNICODE_SUBCLASS:
326 if tp_flags & Py_TPFLAGS_DICT_SUBCLASS:
328 if tp_flags & Py_TPFLAGS_BASE_EXC_SUBCLASS:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
DbgenObjectDefinition.py7 tp_flags = "Py_TPFLAGS_DEFAULT" variable in ObjectDefinition
300 Output("%s, /* tp_flags */", self.tp_flags)
371 tp_flags = "Py_TPFLAGS_DEFAULT|Py_TPFLAGS_BASETYPE" variable in PEP253Mixin
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dobject.h356 long tp_flags; member
659 #define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dobject.h356 long tp_flags; member
647 #define PyType_HasFeature(t,f) (((t)->tp_flags & (f)) != 0)