Home
last modified time | relevance | path

Searched refs:CO_VARARGS (Results 1 – 15 of 15) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dconsts.py15 CO_VARARGS = 0x0004 variable
Dpyassem.py9 import CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS
292 if flag == CO_VARARGS:
Dast.py5 from compiler.consts import CO_VARARGS, CO_VARKEYWORDS
557 if flags & CO_VARARGS:
780 if flags & CO_VARARGS:
Dtransformer.py36 from compiler.consts import CO_VARARGS, CO_VARKEYWORDS
831 flags = flags | CO_VARARGS
Dpycodegen.py12 from compiler.consts import (CO_VARARGS, CO_VARKEYWORDS, CO_NEWLOCALS,
1372 self.graph.setFlag(CO_VARARGS)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
Dast.txt87 if flags & CO_VARARGS:
94 if flags & CO_VARARGS:
Dastgen.py243 from consts import CO_VARARGS, CO_VARKEYWORDS
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dcode.h35 #define CO_VARARGS 0x0004 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dcode.h35 #define CO_VARARGS 0x0004 macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dinspect.py45 CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS = 0x1, 0x2, 0x4, 0x8 variable
791 if co.co_flags & CO_VARARGS:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dinspect.py45 CO_OPTIMIZED, CO_NEWLOCALS, CO_VARARGS, CO_VARKEYWORDS = 0x1, 0x2, 0x4, 0x8 variable
794 if co.co_flags & CO_VARARGS:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dceval.c3041 co->co_flags & (CO_VARARGS | CO_VARKEYWORDS)) { in PyEval_EvalCodeEx()
3050 if (co->co_flags & CO_VARARGS) in PyEval_EvalCodeEx()
3055 if (!(co->co_flags & CO_VARARGS)) { in PyEval_EvalCodeEx()
3073 if (co->co_flags & CO_VARARGS) { in PyEval_EvalCodeEx()
3160 ((co->co_flags & CO_VARARGS) || in PyEval_EvalCodeEx()
3195 if (co->co_flags & CO_VARARGS) in PyEval_EvalCodeEx()
Dcompile.c3795 flags |= CO_VARARGS; in compute_code_flags()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dceval.c3056 co->co_flags & (CO_VARARGS | CO_VARKEYWORDS)) { in PyEval_EvalCodeEx()
3065 if (co->co_flags & CO_VARARGS) in PyEval_EvalCodeEx()
3070 if (!(co->co_flags & CO_VARARGS)) { in PyEval_EvalCodeEx()
3088 if (co->co_flags & CO_VARARGS) { in PyEval_EvalCodeEx()
3175 ((co->co_flags & CO_VARARGS) || in PyEval_EvalCodeEx()
3210 if (co->co_flags & CO_VARARGS) in PyEval_EvalCodeEx()
Dcompile.c3819 flags |= CO_VARARGS; in compute_code_flags()