Home
last modified time | relevance | path

Searched refs:co_flags (Results 1 – 24 of 24) sorted by relevance

/external/python/cpython2/Objects/
Dcodeobject.c125 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()
Dframeobject.c719 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/
Dcompat.py134 if co.co_flags & CO_VARARGS:
138 if co.co_flags & CO_VARKEYWORDS:
/external/libnl/include/netlink-private/
Dcache-api.h180 unsigned int co_flags; member
/external/python/cpython2/Include/
Dcode.h15 int co_flags; /* CO_..., see below */ member
/external/python/cpython2/Lib/
Dcodeop.py135 if codeob.co_flags & feature.compiler_flag:
Dinspect.py161 object.func_code.co_flags & CO_GENERATOR)
793 if co.co_flags & CO_VARARGS:
797 if co.co_flags & CO_VARKEYWORDS:
Dpdb.py742 if co.co_flags & 4: n = n+1
743 if co.co_flags & 8: n = n+1
Dmodulefinder.py610 co.co_flags, co.co_code, tuple(consts), co.co_names,
/external/autotest/client/common_lib/
Dtest.py709 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/
DCallTips.py187 if fob.func_code.co_flags & flag:
DChangeLog744 Append "..." if the appropriate flag (for varargs) in co_flags is set.
/external/python/cpython2/Lib/test/
Dtest_new.py114 flags = c.co_flags
Dtest_import.py507 code.co_flags, code.co_code, tuple(constants),
/external/libnl/lib/
Dcache_mngt.c239 ops->co_flags |= flags; in nl_cache_ops_set_flags()
Dcache.c193 cache->c_flags |= ops->co_flags; in nl_cache_alloc()
/external/python/cpython2/Python/
Dceval.c3373 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 …]
Dmarshal.c434 w_long(co->co_flags, p); in w_object()
Dpythonrun.c1408 flags->cf_flags |= (co->co_flags & PyCF_MASK); in run_pyc_file()
/external/libmojo/third_party/jinja2/
Ddebug.py249 code.co_flags, code.co_code, code.co_consts,
/external/python/cpython2/Lib/lib-tk/
Dturtle.py3795 if fob.func_code.co_flags & 0x4:
3799 if fob.func_code.co_flags & 0x8:
/external/python/cpython2/Doc/library/
Dinspect.rst185 | | co_flags | bitmap: 1=optimized ``|`` | |
/external/python/cpython2/Doc/reference/
Ddatamodel.rst931 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/
Dcheatsheet1291 co_flags (int, R/O): flags for the interpreter