Home
last modified time | relevance | path

Searched refs:Py_file_input (Results 1 – 16 of 16) sorted by relevance

/third_party/python/Tools/peg_generator/peg_extension/
Dpeg_extension.c55 fp, Py_file_input, filename_ob, in parse_file()
96 mod_ty res = _PyPegen_run_parser_from_string(the_string, Py_file_input, filename_ob, in parse_string()
/third_party/python/Include/
Dcompile.h9 #define Py_file_input 257 macro
/third_party/python/Modules/
Dsymtablemodule.c41 start = Py_file_input; in _symtable_symtable_impl()
D_xxsubinterpretersmodule.c1890 PyObject *result = PyRun_StringFlags(codestr, Py_file_input, ns, ns, NULL); in _run_script()
D_testcapimodule.c403 return Py_CompileString(the_string, "<string>", Py_file_input); in pycompilestring()
/third_party/python/Programs/
D_freeze_importlib.c103 code = Py_CompileStringExFlags(text, buf, Py_file_input, NULL, 0); in main()
/third_party/python/Doc/c-api/
Dveryhigh.rst16 :const:`Py_file_input`, and :const:`Py_single_input`. These are described
250 :const:`Py_file_input`, or :const:`Py_single_input`. The filename specified by
327 .. c:var:: int Py_file_input
/third_party/python/Parser/
Dpegen_errors.c306 else if (p->start_rule == Py_file_input) { in _PyPegen_raise_error_known_location()
Dpegen.c494 else if (p->start_rule == Py_file_input) { in _PyPegen_raise_error_known_location()
1404 p->start_rule == Py_file_input || in _PyPegen_run_parser()
1458 int exec_input = start_rule == Py_file_input; in _PyPegen_run_parser_from_string()
Dparser.c34510 if (p->start_rule == Py_file_input) { in _PyPegen_parse()
/third_party/python/Python/
Dpythonrun.c456 v = pyrun_file(fp, filename, Py_file_input, d, d, in _PyRun_SimpleFileObject()
503 v = PyRun_StringFlags(command, Py_file_input, d, d, flags); in PyRun_SimpleStringFlags()
Dbltinmodule.c757 int start[] = {Py_file_input, Py_eval_input, Py_single_input, Py_func_type_input}; in builtin_compile_impl()
1069 v = PyRun_StringFlags(str, Py_file_input, globals, in builtin_exec_impl()
1072 v = PyRun_String(str, Py_file_input, globals, locals); in builtin_exec_impl()
/third_party/alsa-lib/modules/mixer/simple/
Dpython.c1080 obj = PyRun_FileEx(fp, file, Py_file_input, mdict, mdict, 1); in alsa_mixer_simple_pyinit()
/third_party/python/Grammar/
Dpython.gram14 if (p->start_rule == Py_file_input) {
/third_party/python/Doc/whatsnew/
D3.10.rst1957 code = Py_CompileString(source_buf, filename, Py_file_input);
/third_party/python/Misc/
DHISTORY31366 symbols are now in Python.h as Py_single_input, Py_file_input, and