Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dgraminit.h4 #define file_input 257 macro
/external/python/cpython2/Lib/
Dsymbol.py14 file_input = 257 variable
/external/flatbuffers/docs/source/
DJavaScriptUsage.md76 'file_input').files[0]; // "monster.dat" from the HTML <input> field.
92 <input type="file" id="file_input" onchange="readFile();">
/external/python/cpython2/Grammar/
DGrammar15 # file_input is a module or sequence of commands read from an input file;
19 file_input: (NEWLINE | stmt)* ENDMARKER
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt26 # file_input is a module or sequence of commands read from an input file;
30 file_input: (NEWLINE | stmt)* ENDMARKER
Dfixer_util.py276 while node.type != syms.file_input:
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
Drhino-python.prog63 parser.file_input();
DPython.g82 file_input
/external/python/cpython2/Lib/compiler/
Dtransformer.py156 if n == symbol.file_input:
157 return self.file_input(node[1:])
179 def file_input(self, nodelist): member in Transformer
180 doc = self.get_docstring(nodelist, symbol.file_input)
1405 if n == symbol.file_input:
/external/python/cpython2/Doc/reference/
Dtoplevel_components.rst69 file_input: (NEWLINE | `statement`)*
/external/python/cpython2/Parser/
Dparsetok.c54 if ((tok = PyTokenizer_FromString(s, start == file_input)) == NULL) { in PyParser_ParseStringFlagsFilenameEx()
/external/python/cpython2/Lib/lib2to3/tests/
Dtest_refactor.py132 top_fixes = d.pop(pygram.python_symbols.file_input)
/external/python/cpython2/Modules/
Dparsermodule.c575 ? eval_input : file_input, in parser_do_parse()
681 else if (start_sym == file_input) { in parser_tuple2st()
/external/python/cpython2/Python/
Dast.c177 case file_input: in num_stmts()
243 case file_input: in PyAST_FromNode()