Searched refs:co_flags (Results 1 – 24 of 24) sorted by relevance
/external/python/cpython2/Objects/ |
D | codeobject.c | 125 co->co_flags = flags; in PyCode_New() 204 {"co_flags", T_INT, OFF(co_flags), READONLY}, 393 cmp = co->co_flags - cp->co_flags; in code_compare() 579 eq = co->co_flags == cp->co_flags; in code_richcompare() 647 co->co_argcount ^ co->co_nlocals ^ co->co_flags; in code_hash()
|
D | frameobject.c | 719 if ((code->co_flags & (CO_NEWLOCALS | CO_OPTIMIZED)) == in PyFrame_New() 722 else if (code->co_flags & CO_NEWLOCALS) { in PyFrame_New() 910 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_FastToLocals() 950 if (co->co_flags & CO_OPTIMIZED) { in PyFrame_LocalsToFast()
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
D | compat.py | 134 if co.co_flags & CO_VARARGS: 138 if co.co_flags & CO_VARKEYWORDS:
|
/external/libnl/include/netlink-private/ |
D | cache-api.h | 180 unsigned int co_flags; member
|
/external/python/cpython2/Include/ |
D | code.h | 15 int co_flags; /* CO_..., see below */ member
|
/external/python/cpython2/Lib/ |
D | codeop.py | 135 if codeob.co_flags & feature.compiler_flag:
|
D | inspect.py | 161 object.func_code.co_flags & CO_GENERATOR) 793 if co.co_flags & CO_VARARGS: 797 if co.co_flags & CO_VARKEYWORDS:
|
D | pdb.py | 742 if co.co_flags & 4: n = n+1 743 if co.co_flags & 8: n = n+1
|
D | modulefinder.py | 610 co.co_flags, co.co_code, tuple(consts), co.co_names,
|
/external/autotest/client/common_lib/ |
D | test.py | 709 if func.func_code.co_flags & 0x04: 716 if func.func_code.co_flags & 0x08: 755 all_co_flags |= func.func_code.co_flags
|
/external/python/cpython2/Lib/idlelib/ |
D | CallTips.py | 187 if fob.func_code.co_flags & flag:
|
D | ChangeLog | 744 Append "..." if the appropriate flag (for varargs) in co_flags is set.
|
/external/python/cpython2/Lib/test/ |
D | test_new.py | 114 flags = c.co_flags
|
D | test_import.py | 507 code.co_flags, code.co_code, tuple(constants),
|
/external/libnl/lib/ |
D | cache_mngt.c | 239 ops->co_flags |= flags; in nl_cache_ops_set_flags()
|
D | cache.c | 193 cache->c_flags |= ops->co_flags; in nl_cache_alloc()
|
/external/python/cpython2/Python/ |
D | ceval.c | 3373 co->co_flags & (CO_VARARGS | CO_VARKEYWORDS)) { in PyEval_EvalCodeEx() 3377 if (co->co_flags & CO_VARKEYWORDS) { in PyEval_EvalCodeEx() 3382 if (co->co_flags & CO_VARARGS) in PyEval_EvalCodeEx() 3387 if (!(co->co_flags & CO_VARARGS)) { in PyEval_EvalCodeEx() 3405 if (co->co_flags & CO_VARARGS) { in PyEval_EvalCodeEx() 3492 ((co->co_flags & CO_VARARGS) || in PyEval_EvalCodeEx() 3527 if (co->co_flags & CO_VARARGS) in PyEval_EvalCodeEx() 3529 if (co->co_flags & CO_VARKEYWORDS) in PyEval_EvalCodeEx() 3572 if (co->co_flags & CO_GENERATOR) { in PyEval_EvalCodeEx() 4165 const int codeflags = current_frame->f_code->co_flags; in PyEval_MergeCompilerFlags() [all …]
|
D | marshal.c | 434 w_long(co->co_flags, p); in w_object()
|
D | pythonrun.c | 1408 flags->cf_flags |= (co->co_flags & PyCF_MASK); in run_pyc_file()
|
/external/libmojo/third_party/jinja2/ |
D | debug.py | 249 code.co_flags, code.co_code, code.co_consts,
|
/external/python/cpython2/Lib/lib-tk/ |
D | turtle.py | 3795 if fob.func_code.co_flags & 0x4: 3799 if fob.func_code.co_flags & 0x8:
|
/external/python/cpython2/Doc/library/ |
D | inspect.rst | 185 | | co_flags | bitmap: 1=optimized ``|`` | |
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 931 single: co_flags (code object attribute) 956 :attr:`co_flags` is an integer encoding a number of flags for the interpreter. 960 The following flag bits are defined for :attr:`co_flags`: bit ``0x04`` is set if 967 in :attr:`co_flags` to indicate whether a code object was compiled with a 972 Other bits in :attr:`co_flags` are reserved for internal use.
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 1291 co_flags (int, R/O): flags for the interpreter
|