Home
last modified time | relevance | path

Searched refs:eval_input (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Include/
Dgraminit.h5 #define eval_input 258 macro
/external/python/cpython2/Lib/
Dsymbol.py15 eval_input = 258 variable
/external/python/cpython2/Grammar/
DGrammar16 # eval_input is the input for the eval() and input() functions.
20 eval_input: testlist NEWLINE* ENDMARKER
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt28 # eval_input is the input for the eval() and input() functions.
32 eval_input: testlist NEWLINE* ENDMARKER
/external/python/cpython2/Doc/reference/
Dtoplevel_components.rst107 eval_input: `expression_list` NEWLINE*
/external/python/cpython2/Lib/compiler/
Dtransformer.py158 if n == symbol.eval_input:
159 return self.eval_input(node[1:])
191 def eval_input(self, nodelist): member in Transformer
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g86 eval_input
/external/python/cpython2/Modules/
Dparsermodule.c575 ? eval_input : file_input, in parser_do_parse()
674 if (start_sym == eval_input) { in parser_tuple2st()
3088 int res = (validate_ntype(tree, eval_input) in validate_eval_input()
DcPickle.c10 #define Py_eval_input eval_input
/external/python/cpython2/Python/
Dast.c271 case eval_input: { in PyAST_FromNode()