Searched refs:PySet_Type (Results 1 – 11 of 11) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | setobject.h | 59 PyAPI_DATA(PyTypeObject) PySet_Type; 71 (Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type) 73 (Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type || \ 74 PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \ 77 (Py_TYPE(ob) == &PySet_Type || \ 78 PyType_IsSubtype(Py_TYPE(ob), &PySet_Type))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | setobject.h | 59 PyAPI_DATA(PyTypeObject) PySet_Type; 71 (Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type) 73 (Py_TYPE(ob) == &PySet_Type || Py_TYPE(ob) == &PyFrozenSet_Type || \ 74 PyType_IsSubtype(Py_TYPE(ob), &PySet_Type) || \ 77 (Py_TYPE(ob) == &PySet_Type || \ 78 PyType_IsSubtype(Py_TYPE(ob), &PySet_Type))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
D | setobject.c | 1012 (type == &PySet_Type || type == &PyFrozenSet_Type)) { in make_new_set() 1093 if (type == &PySet_Type && !_PyArg_NoKeywords("set()", kwds)) in set_new() 1753 tmp = make_new_set(&PySet_Type, other); in set_issubset() 1781 tmp = make_new_set(&PySet_Type, other); in set_issuperset() 2115 PyTypeObject PySet_Type = { variable 2264 return make_new_set(&PySet_Type, iterable); in PySet_New()
|
D | object.c | 2116 if (PyType_Ready(&PySet_Type) < 0) in _Py_ReadyTypes()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | setobject.c | 1013 (type == &PySet_Type || type == &PyFrozenSet_Type)) { in make_new_set() 1094 if (type == &PySet_Type && !_PyArg_NoKeywords("set()", kwds)) in set_new() 1754 tmp = make_new_set(&PySet_Type, other); in set_issubset() 1782 tmp = make_new_set(&PySet_Type, other); in set_issuperset() 2119 PyTypeObject PySet_Type = { variable 2268 return make_new_set(&PySet_Type, iterable); in PySet_New()
|
D | object.c | 2109 if (PyType_Ready(&PySet_Type) < 0) in _Py_ReadyTypes()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | marshal.c | 395 if (PyObject_TypeCheck(v, &PySet_Type)) in w_object()
|
D | bltinmodule.c | 2709 SETBUILTIN("set", &PySet_Type); in _PyBuiltin_Init()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Python/ |
D | marshal.c | 406 if (PyObject_TypeCheck(v, &PySet_Type)) in w_object()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/ |
D | marshal.c | 395 if (PyObject_TypeCheck(v, &PySet_Type)) in w_object()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | bltinmodule.c | 2720 SETBUILTIN("set", &PySet_Type); in _PyBuiltin_Init()
|