Home
last modified time | relevance | path

Searched refs:cf_flags (Results 1 – 14 of 14) sorted by relevance

/third_party/python/Include/cpython/
Dcompile.h25 int cf_flags; /* bitmask of CO_xxx flags relevant to future */ member
30 (PyCompilerFlags){.cf_flags = 0, .cf_feature_version = PY_MINOR_VERSION}
/third_party/libuv/include/uv/
Ddarwin.h49 int cf_flags; \
/third_party/python/Modules/
Dsymtablemodule.c33 cf.cf_flags = PyCF_SOURCE_IS_UTF8; in _symtable_symtable_impl()
Dmain.c247 cf.cf_flags |= PyCF_IGNORE_COOKIE; in pymain_run_command()
/third_party/python/Parser/
Dpegen.c1182 if (flags->cf_flags & PyCF_DONT_IMPLY_DEDENT) { in compute_parser_flags()
1185 if (flags->cf_flags & PyCF_IGNORE_COOKIE) { in compute_parser_flags()
1188 if (flags->cf_flags & CO_FUTURE_BARRY_AS_BDFL) { in compute_parser_flags()
1191 if (flags->cf_flags & PyCF_TYPE_COMMENTS) { in compute_parser_flags()
1194 if ((flags->cf_flags & PyCF_ONLY_AST) && flags->cf_feature_version < 7) { in compute_parser_flags()
1438 if (flags != NULL && flags->cf_flags & PyCF_IGNORE_COOKIE) { in _PyPegen_run_parser_from_string()
1457 int feature_version = flags && (flags->cf_flags & PyCF_ONLY_AST) ? in _PyPegen_run_parser_from_string()
/third_party/python/Doc/c-api/
Dveryhigh.rst352 Whenever ``PyCompilerFlags *flags`` is ``NULL``, :attr:`cf_flags` is treated as
356 .. c:member:: int cf_flags
366 ``PyCF_ONLY_AST`` flag is set in *cf_flags*.
/third_party/python/Python/
Dpythonrun.c1352 flags->cf_flags |= (co->co_flags & PyCF_MASK); in run_pyc_file()
1375 if (flags && (flags->cf_flags & PyCF_ONLY_AST)) { in Py_CompileStringObject()
1407 cf->cf_flags |= PyCF_IGNORE_COOKIE; in _Py_SourceAsString()
Dbltinmodule.c761 cf.cf_flags = flags | PyCF_SOURCE_IS_UTF8; in builtin_compile_impl()
971 cf.cf_flags = PyCF_SOURCE_IS_UTF8; in builtin_eval_impl()
1062 cf.cf_flags = PyCF_SOURCE_IS_UTF8; in builtin_exec_impl()
Dceval.c5735 int result = cf->cf_flags != 0; in PyEval_MergeCompilerFlags()
5742 cf->cf_flags |= compilerflags; in PyEval_MergeCompilerFlags()
5747 cf->cf_flags |= CO_GENERATOR_ALLOWED; in PyEval_MergeCompilerFlags()
Dcompile.c73 (c->c_flags->cf_flags & PyCF_ALLOW_TOP_LEVEL_AWAIT) \
432 merged = c.c_future->ff_features | flags->cf_flags; in _PyAST_Compile()
434 flags->cf_flags = merged; in _PyAST_Compile()
6826 flags |= (c->c_flags->cf_flags & PyCF_MASK); in compute_code_flags()
Dsymtable.c2156 future->ff_features |= flags->cf_flags; in _Py_SymtableStringObjectFlags()
/third_party/libuv/src/unix/
Dkqueue.c542 handle->cf_flags = flags; in uv_fs_event_start()
Dfsevents.c303 if ((handle->cf_flags & UV_FS_EVENT_RECURSIVE) == 0 && *path != '\0') { in uv__fsevents_event_cb()
/third_party/python/Doc/whatsnew/
D3.8.rst2014 *cf_flags*.