Home
last modified time | relevance | path

Searched refs:RPAR (Results 1 – 24 of 24) sorted by relevance

/external/python/cpython3/Lib/
Dtoken.py14 RPAR = 8 variable
86 ')': RPAR,
/external/yapf/yapftests/
Dunwrapped_line_test.py54 uwl.AppendToken(_MakeFormatTokenLeaf(token.RPAR, ')'))
60 uwl.AppendNode(pytree.Leaf(token.RPAR, ')'))
Dpytree_utils_test.py98 return pytree.Leaf(token.RPAR, ')')
/external/python/cpython3/Grammar/
DTokens10 RPAR ')'
/external/python/cpython2/Include/
Dtoken.h20 #define RPAR 8 macro
/external/python/cpython2/Lib/lib2to3/pgen2/
Dtoken.py17 RPAR = 8 variable
/external/python/cpython3/Lib/lib2to3/pgen2/
Dtoken.py17 RPAR = 8 variable
/external/python/cpython3/Parser/
Dtoken.c84 case ')': return RPAR; in PyToken_OneChar()
/external/python/cpython3/Include/
Dtoken.h21 #define RPAR 8 macro
/external/python/cpython2/Lib/
Dtoken.py19 RPAR = 8 variable
/external/python/cpython3/Doc/library/
Dtokenize.rst265 1,14-1,15: RPAR ')'
272 2,25-2,26: RPAR ')'
278 4,10-4,11: RPAR ')'
Dtoken-list.inc20 .. data:: RPAR
/external/python/cpython2/Doc/library/
Dtoken.rst54 RPAR
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_metaclass.py186 node.insert_child(2, Leaf(token.RPAR, u')'))
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_metaclass.py186 node.insert_child(2, Leaf(token.RPAR, ')'))
/external/python/cpython2/Lib/compiler/
Dtransformer.py301 elif nodelist[3][0] == token.RPAR:
742 if nodelist[1][0] == token.RPAR:
1031 if node[0] == token.RPAR:
1257 if nodelist[0] == token.RPAR:
/external/python/cpython2/Lib/lib2to3/
Dfixer_util.py25 return Leaf(token.RPAR, u")")
/external/python/cpython3/Lib/lib2to3/
Dfixer_util.py23 return Leaf(token.RPAR, ")")
/external/yapf/yapf/yapflib/
Dsubtype_assigner.py413 token.RPAR, u')', context=('', (last_lineno, last_column)))
/external/python/cpython2/Parser/
Dpgen.c307 REQ(n, RPAR); in compile_atom()
Dtokenizer.c1048 case ')': return RPAR; in PyToken_OneChar()
/external/python/cpython2/Python/
Dast.c1415 if (TYPE(ch) == RPAR) in ast_for_atom()
3224 if (TYPE(CHILD(n,3)) == RPAR) { in ast_for_classdef()
/external/python/cpython3/Python/
Dast.c2377 if (TYPE(ch) == RPAR) in ast_for_atom()
4354 if (TYPE(CHILD(n, 3)) == RPAR) { /* class NAME '(' ')' ':' suite */ in ast_for_classdef()
/external/python/cpython2/Modules/
Dparsermodule.c973 #define validate_rparen(ch) validate_terminal(ch, RPAR, ")")