/external/yapf/yapftests/ |
D | logical_line_test.py | 38 toks = _MakeFormatTokenList([(token.DOT, '.'), (token.LPAR, '('), 46 toks = _MakeFormatTokenList([(token.DOT, '.'), (token.LPAR, '('), 53 lline.AppendToken(_MakeFormatTokenLeaf(token.LPAR, '(')) 59 lline.AppendNode(pytree.Leaf(token.LPAR, '('))
|
D | pytree_utils_test.py | 39 leaf = pytree.Leaf(token.LPAR, '(') 43 leaf = pytree.Leaf(token.LPAR, '(') 90 lpar1 = pytree.Leaf(token.LPAR, '(') 91 lpar2 = pytree.Leaf(token.LPAR, '(') 153 self._leaf = pytree.Leaf(token.LPAR, '(')
|
/external/yapf/yapf/yapflib/ |
D | identify_container.py | 47 if node.children[0].type != grammar_token.LPAR: 64 if node.children[0].type != grammar_token.LPAR:
|
D | subtype_assigner.py | 452 grammar_token.LPAR,
|
/external/python/cpython3/Lib/ |
D | token.py | 13 LPAR = 7 variable 86 '(': LPAR,
|
/external/ltp/runtest/ |
D | s390x_tests | 1 # Those tests are designed to be executed in s390x environment (zVM or LPAR)
|
/external/python/cpython3/Grammar/ |
D | Tokens | 9 LPAR '('
|
/external/python/cpython2/Lib/lib2to3/pgen2/ |
D | token.py | 16 LPAR = 7 variable
|
/external/python/cpython2/Include/ |
D | token.h | 19 #define LPAR 7 macro
|
/external/python/cpython3/Lib/lib2to3/pgen2/ |
D | token.py | 16 LPAR = 7 variable
|
/external/python/cpython3/Parser/ |
D | token.c | 84 case '(': return LPAR; in PyToken_OneChar()
|
/external/python/cpython3/Include/ |
D | token.h | 20 #define LPAR 7 macro
|
/external/python/cpython2/Lib/ |
D | token.py | 18 LPAR = 7 variable
|
/external/python/cpython3/Doc/library/ |
D | tokenize.rst | 264 1,13-1,14: LPAR '(' 270 2,9-2,10: LPAR '(' 277 4,9-4,10: LPAR '('
|
D | token-list.inc | 16 .. data:: LPAR
|
/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/cpython2/Doc/library/ |
D | token.rst | 53 LPAR
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 188 node.insert_child(2, Leaf(token.LPAR, u'('))
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_metaclass.py | 188 node.insert_child(2, Leaf(token.LPAR, '('))
|
/external/python/cpython2/Parser/ |
D | parser.c | 200 if (TYPE(ch) == LPAR) in future_hack()
|
D | pgen.c | 301 if (n->n_type == LPAR) { in compile_atom()
|
/external/rust/crates/libz-sys/src/zlib-ng/arch/s390/ |
D | README.md | 212 access to an IBM z15+ VM or LPAR in order to test DFLTCC support. Since 213 DFLTCC is a non-privileged instruction, neither special VM/LPAR
|
/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 | 971 #define validate_lparen(ch) validate_terminal(ch, LPAR, "(") 1977 if (res && TYPE(CHILD(tree, offset + 2)) == LPAR) in validate_import_from() 2529 case LPAR: in validate_atom() 2925 case LPAR: in validate_trailer()
|