Home
last modified time | relevance | path

Searched refs:single_input (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython2/Grammar/
DGrammar14 # single_input is a single interactive statement;
17 # NB: compound_stmt in single_input is followed by extra NEWLINE!
18 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
/external/python/cpython3/Grammar/
DGrammar7 # single_input is a single interactive statement;
10 # NB: compound_stmt in single_input is followed by extra NEWLINE!
11 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt27 # single_input is a single interactive statement;
29 # NB: compound_stmt in single_input is followed by extra NEWLINE!
31 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
/external/python/cpython3/Lib/lib2to3/
DGrammar.txt27 # single_input is a single interactive statement;
29 # NB: compound_stmt in single_input is followed by extra NEWLINE!
31 single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE
/external/python/cpython2/Include/
Dgraminit.h3 #define single_input 256 macro
/external/python/cpython3/Include/
Dgraminit.h3 #define single_input 256 macro
/external/python/cpython2/Lib/
Dsymbol.py13 single_input = 256 variable
/external/python/cpython3/Lib/
Dsymbol.py13 single_input = 256 variable
/external/tensorflow/tensorflow/python/training/
Devaluation_test.py143 single_input, single_label = training.slice_input_producer(
145 inputs, labels = training.batch([single_input, single_label], batch_size=6,
/external/python/cpython3/Parser/
Dparsetok.c283 if (start == single_input) { in parsetok()
/external/tensorflow/tensorflow/contrib/rnn/python/kernel_tests/
Dcore_rnn_test.py1667 single_input = (array_ops.placeholder(
1671 inputs = max_length * [single_input]
1726 single_input: input_value
1730 single_input: input_value
1752 single_input: input_value
1756 single_input: input_value
/external/python/cpython2/Lib/compiler/
Dtransformer.py154 if n == symbol.single_input:
155 return self.single_input(node[1:])
169 def single_input(self, node): member in Transformer
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g76 single_input
/external/python/cpython2/Python/
Dast.c172 case single_input: in num_stmts()
280 case single_input: in PyAST_FromNode()
/external/python/cpython3/Python/
Dast.c717 case single_input: in num_stmts()
821 case single_input: in PyAST_FromNodeObject()