Home
last modified time | relevance | path

Searched refs:PyCF_MASK (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Include/
Dcompile.h18 #define PyCF_MASK (CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | \ macro
/external/python/cpython2/Include/
Dpythonrun.h10 #define PyCF_MASK (CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | \ macro
/external/python/cpython2/Python/
Dpythonrun.c1417 flags->cf_flags |= (co->co_flags & PyCF_MASK); in run_pyc_file()
1487 flags->cf_flags |= iflags & PyCF_MASK; in PyParser_ASTFromString()
1515 flags->cf_flags |= iflags & PyCF_MASK; in PyParser_ASTFromFile()
Dbltinmodule.c492 ~(PyCF_MASK | PyCF_MASK_OBSOLETE | PyCF_DONT_IMPLY_DEDENT | PyCF_ONLY_AST)) in builtin_compile()
Dcompile.c3787 flags |= (c->c_flags->cf_flags & PyCF_MASK); in compute_code_flags()
Dceval.c4186 const int compilerflags = codeflags & PyCF_MASK; in PyEval_MergeCompilerFlags()
/external/python/cpython3/Python/
Dpythonrun.c1239 flags->cf_flags |= (co->co_flags & PyCF_MASK); in run_pyc_file()
1415 flags->cf_flags |= iflags & PyCF_MASK; in PyParser_ASTFromStringObject()
1459 flags->cf_flags |= iflags & PyCF_MASK; in PyParser_ASTFromFileObject()
Dbltinmodule.c742 ~(PyCF_MASK | PyCF_MASK_OBSOLETE | PyCF_COMPILE_MASK)) in builtin_compile_impl()
Dceval.c4949 const int compilerflags = codeflags & PyCF_MASK; in PyEval_MergeCompilerFlags()
Dcompile.c5855 flags |= (c->c_flags->cf_flags & PyCF_MASK); in compute_code_flags()
/external/python/cpython3/Modules/
Dparsermodule.c584 ((PyST_Object *)res)->st_flags.cf_flags = flags & PyCF_MASK; in parser_do_parse()
/external/python/cpython3/Objects/
Dcall.c363 (co->co_flags & ~PyCF_MASK) == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) in _PyFunction_Vectorcall()
/external/python/cpython2/Modules/
Dparsermodule.c581 ((PyST_Object *)res)->st_flags.cf_flags = flags & PyCF_MASK; in parser_do_parse()