Home
last modified time | relevance | path

Searched refs:Py_eval_input (Results 1 – 22 of 22) sorted by relevance

/external/python/pybind11/include/pybind11/
Deval.h58 case eval_expr: start = Py_eval_input; break;
110 case eval_expr: start = Py_eval_input; break;
/external/python/cpython2/Include/
DPython.h165 #define Py_eval_input 258 macro
/external/python/cffi/cffi/
D_cffi_errors.h106 s = PyRun_String("done()", Py_eval_input, ecap, ecap); in _cffi_stop_error_capture()
/external/python/cpython3/Include/
Dcompile.h110 #define Py_eval_input 258 macro
/external/python/cpython2/Modules/
Dsymtablemodule.c25 start = Py_eval_input; in symtable_symtable()
DcPickle.c8 #ifndef Py_eval_input
10 #define Py_eval_input eval_input macro
/external/python/cpython3/Modules/
Dsymtablemodule.c46 start = Py_eval_input; in _symtable_symtable_impl()
D_peg_parser.c12 mode = Py_eval_input; in _mode_str_to_int()
/external/llvm-project/lldb/unittests/ScriptInterpreter/Python/
DPythonDataObjectsTests.cpp637 PyObject *o = PyRun_String("lambda x : x", Py_eval_input, globals.get(), in TEST_F()
647 PyObject *o = PyRun_String("lambda x,y=0: x", Py_eval_input, globals.get(), in TEST_F()
657 PyObject *o = PyRun_String("lambda x,y=0, **kw: x", Py_eval_input, in TEST_F()
667 PyObject *o = PyRun_String("lambda x,y,*a: x", Py_eval_input, globals.get(), in TEST_F()
678 PyObject *o = PyRun_String("lambda x,y,*a,**kw: x", Py_eval_input, in TEST_F()
/external/python/cpython2/Doc/c-api/
Dveryhigh.rst15 parameter. The available start symbols are :const:`Py_eval_input`,
233 code which can be compiled and should be :const:`Py_eval_input`,
277 .. c:var:: int Py_eval_input
/external/python/cpython3/Doc/c-api/
Dveryhigh.rst15 parameter. The available start symbols are :const:`Py_eval_input`,
296 code which can be compiled and should be :const:`Py_eval_input`,
366 .. c:var:: int Py_eval_input
/external/python/cpython2/Python/
Dbltinmodule.c482 int start[] = {Py_file_input, Py_eval_input, Py_single_input}; in builtin_compile()
707 result = PyRun_StringFlags(str, Py_eval_input, globals, locals, &cf); in builtin_eval()
1262 res = PyRun_StringFlags(str, Py_eval_input, globals, locals, &cf); in builtin_input()
/external/python/cpython3/Python/
Dbltinmodule.c732 int start[] = {Py_file_input, Py_eval_input, Py_single_input, Py_func_type_input}; in builtin_compile_impl()
959 result = PyRun_StringFlags(str, Py_eval_input, globals, locals, &cf); in builtin_eval_impl()
Dast.c4783 Py_eval_input, 0); in fstring_compile_expr()
/external/python/cpython3/Doc/faq/
Dextending.rst75 start symbol :c:data:`Py_eval_input`; it parses an expression, evaluates it and
/external/python/cpython2/Doc/faq/
Dextending.rst78 start symbol :c:data:`Py_eval_input`; it parses an expression, evaluates it and
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DPythonDataObjects.cpp1585 Py_CompileString(NullTerminated(string), "<string>", Py_eval_input); in runStringOneLine()
/external/python/cpython3/Grammar/
Dpython.gram17 } else if (p->start_rule == Py_eval_input) {
/external/python/cpython3/Parser/pegen/
Dpegen.c1156 p->start_rule == Py_eval_input) in _PyPegen_run_parser()
Dparse.c24763 } else if (p->start_rule == Py_eval_input) { in _PyPegen_parse()
/external/python/cpython2/Misc/
DHISTORY13988 Py_eval_input.
/external/python/cpython3/Misc/
DHISTORY31367 Py_eval_input.