Searched refs:Py_single_input (Results 1 – 21 of 21) sorted by relevance
/external/python/pybind11/include/pybind11/ |
D | eval.h | 59 case eval_single_statement: start = Py_single_input; break; 111 case eval_single_statement: start = Py_single_input; break;
|
/external/python/cpython2/Include/ |
D | Python.h | 163 #define Py_single_input 256 macro
|
/external/python/cpython3/Include/ |
D | compile.h | 108 #define Py_single_input 256 macro
|
/external/python/cpython2/Modules/ |
D | symtablemodule.c | 27 start = Py_single_input; in symtable_symtable()
|
/external/python/cpython3/Modules/ |
D | symtablemodule.c | 48 start = Py_single_input; in _symtable_symtable_impl()
|
D | _peg_parser.c | 15 mode = Py_single_input; in _mode_str_to_int()
|
/external/python/cpython2/Demo/pysvr/ |
D | pysvr.c | 350 v = PyRun_String(buffer, Py_single_input, globals, globals); in run_command()
|
/external/python/cpython2/Doc/c-api/ |
D | veryhigh.rst | 16 :const:`Py_file_input`, and :const:`Py_single_input`. These are described 234 :const:`Py_file_input`, or :const:`Py_single_input`. The filename specified by 294 .. c:var:: int Py_single_input
|
/external/python/cpython3/Doc/c-api/ |
D | veryhigh.rst | 16 :const:`Py_file_input`, and :const:`Py_single_input`. These are described 297 :const:`Py_file_input`, or :const:`Py_single_input`. The filename specified by 383 .. c:var:: int Py_single_input
|
/external/python/cpython3/Parser/pegen/ |
D | pegen.c | 603 if (type == ENDMARKER && p->start_rule == Py_single_input && p->parsing_started) { in _PyPegen_fill_token() 1148 if (p->start_rule == Py_single_input && bad_single_statement(p)) { in _PyPegen_run_parser() 1154 if (p->start_rule == Py_single_input || in _PyPegen_run_parser()
|
D | parse.c | 24761 } else if (p->start_rule == Py_single_input) { in _PyPegen_parse()
|
/external/python/cpython3/Python/ |
D | pythonrun.c | 243 mod = PyPegen_ASTFromFileObject(fp, filename, Py_single_input, in PyRun_InteractiveOneObjectEx() 248 Py_single_input, ps1, ps2, in PyRun_InteractiveOneObjectEx()
|
D | bltinmodule.c | 732 int start[] = {Py_file_input, Py_eval_input, Py_single_input, Py_func_type_input}; in builtin_compile_impl()
|
/external/python/cpython3/Doc/faq/ |
D | extending.rst | 374 src = Py_CompileString (code, "<stdin>", Py_single_input);
|
/external/python/cpython2/Python/ |
D | pythonrun.c | 847 Py_single_input, ps1, ps2, in PyRun_InteractiveOneFlags()
|
D | bltinmodule.c | 482 int start[] = {Py_file_input, Py_eval_input, Py_single_input}; in builtin_compile()
|
/external/python/cpython2/Doc/faq/ |
D | extending.rst | 381 src = Py_CompileString (code, "<stdin>", Py_single_input);
|
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
D | PythonDataObjects.cpp | 1589 Py_CompileString(NullTerminated(string), "<string>", Py_single_input); in runStringOneLine()
|
/external/python/cpython3/Grammar/ |
D | python.gram | 15 } else if (p->start_rule == Py_single_input) {
|
/external/python/cpython2/Misc/ |
D | HISTORY | 13987 symbols are now in Python.h as Py_single_input, Py_file_input, and
|
/external/python/cpython3/Misc/ |
D | HISTORY | 31366 symbols are now in Python.h as Py_single_input, Py_file_input, and
|