/external/python/cpython2/Include/ |
D | token.h | 19 #define LPAR 7 macro
|
/external/python/cpython2/Lib/lib2to3/pgen2/ |
D | token.py | 16 LPAR = 7 variable
|
/external/python/cpython3/Include/ |
D | token.h | 19 #define LPAR 7 macro
|
/external/python/cpython3/Lib/lib2to3/pgen2/ |
D | token.py | 16 LPAR = 7 variable
|
/external/python/cpython2/Lib/compiler/ |
D | transformer.py | 110 self._atom_dispatch = {token.LPAR: self.atom_lpar, 220 assert nodelist[2][0] == token.LPAR 472 node = nodelist[idx + 1 + (nodelist[idx + 1][0] == token.LPAR)] 865 if node[1][0] == token.LPAR: 1029 if t == token.LPAR: 1070 if t == token.LPAR: 1242 if t == token.LPAR:
|
/external/python/cpython3/Lib/ |
D | token.py | 20 LPAR = 7 variable
|
D | tokenize.py | 53 '(': LPAR,
|
/external/python/cpython2/Lib/ |
D | token.py | 18 LPAR = 7 variable
|
/external/python/cpython3/Doc/library/ |
D | tokenize.rst | 271 1,13-1,14: LPAR '(' 277 2,9-2,10: LPAR '(' 284 4,9-4,10: LPAR '('
|
D | token.rst | 54 LPAR
|
/external/python/cpython2/Doc/library/ |
D | token.rst | 53 LPAR
|
/external/tensorflow/tensorflow/contrib/tensorboard/plugins/trace/ |
D | trace.py | 35 LEFT_TOKENS = [token.LPAR, token.LSQB, token.LBRACE]
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 188 node.insert_child(2, Leaf(token.LPAR, '('))
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 188 node.insert_child(2, Leaf(token.LPAR, u'('))
|
/external/python/cpython2/Parser/ |
D | parser.c | 200 if (TYPE(ch) == LPAR) in future_hack()
|
D | pgen.c | 290 if (n->n_type == LPAR) { in compile_atom()
|
D | tokenizer.c | 1047 case '(': return LPAR; in PyToken_OneChar()
|
/external/python/cpython3/Parser/ |
D | parser.c | 206 if (TYPE(ch) == LPAR)
|
D | pgen.c | 300 if (n->n_type == LPAR) { in compile_atom()
|
D | tokenizer.c | 1121 case '(': return LPAR; in PyToken_OneChar()
|
/external/python/cpython3/Lib/lib2to3/ |
D | fixer_util.py | 20 return Leaf(token.LPAR, "(")
|
/external/python/cpython2/Lib/lib2to3/ |
D | fixer_util.py | 22 return Leaf(token.LPAR, u"(")
|
/external/python/cpython2/Modules/ |
D | parsermodule.c | 929 #define validate_lparen(ch) validate_terminal(ch, LPAR, "(") 1935 if (res && TYPE(CHILD(tree, offset + 2)) == LPAR) in validate_import_from() 2487 case LPAR: in validate_atom() 2883 case LPAR: in validate_trailer()
|
/external/python/cpython3/Python/ |
D | ast.c | 2156 case LPAR: /* some parenthesized expressions */ in ast_for_atom() 2362 if (TYPE(CHILD(n, 0)) == LPAR) { in ast_for_trailer() 2963 if (NCH(deep) > 0 && TYPE(CHILD(deep, 0)) == LPAR) { in ast_for_expr_stmt() 3340 case LPAR: in ast_for_import_stmt()
|
/external/python/cpython2/Python/ |
D | ast.c | 1412 case LPAR: /* some parenthesized expressions */ in ast_for_atom() 1658 if (TYPE(CHILD(n, 0)) == LPAR) { in ast_for_trailer() 2594 case LPAR: in ast_for_import_stmt()
|