Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dtoken.h20 #define RPAR 8 macro
/external/python/cpython2/Lib/lib2to3/pgen2/
Dtoken.py17 RPAR = 8 variable
/external/python/cpython3/Include/
Dtoken.h20 #define RPAR 8 macro
/external/python/cpython3/Lib/lib2to3/pgen2/
Dtoken.py17 RPAR = 8 variable
/external/python/cpython3/Lib/
Dtoken.py21 RPAR = 8 variable
Dtokenize.py54 ')': RPAR,
/external/python/cpython2/Lib/
Dtoken.py19 RPAR = 8 variable
/external/python/cpython3/Doc/library/
Dtokenize.rst272 1,14-1,15: RPAR ')'
279 2,25-2,26: RPAR ')'
285 4,10-4,11: RPAR ')'
Dtoken.rst55 RPAR
/external/python/cpython2/Doc/library/
Dtoken.rst54 RPAR
/external/tensorflow/tensorflow/contrib/tensorboard/plugins/trace/
Dtrace.py36 RIGHT_TOKENS = [token.RPAR, token.RSQB, token.RBRACE]
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_metaclass.py186 node.insert_child(2, Leaf(token.RPAR, ')'))
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_metaclass.py186 node.insert_child(2, Leaf(token.RPAR, u')'))
/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/cpython3/Lib/lib2to3/
Dfixer_util.py23 return Leaf(token.RPAR, ")")
/external/python/cpython2/Lib/lib2to3/
Dfixer_util.py25 return Leaf(token.RPAR, u")")
/external/python/cpython2/Parser/
Dpgen.c296 REQ(n, RPAR); in compile_atom()
Dtokenizer.c1048 case ')': return RPAR; in PyToken_OneChar()
/external/python/cpython3/Parser/
Dpgen.c306 REQ(n, RPAR); in compile_atom()
Dtokenizer.c1122 case ')': return RPAR; in PyToken_OneChar()
/external/python/cpython2/Python/
Dast.c1415 if (TYPE(ch) == RPAR) in ast_for_atom()
3222 if (TYPE(CHILD(n,3)) == RPAR) { in ast_for_classdef()
/external/python/cpython3/Python/
Dast.c2159 if (TYPE(ch) == RPAR) in ast_for_atom()
3928 if (TYPE(CHILD(n, 3)) == RPAR) { /* class NAME '(' ')' ':' suite */ in ast_for_classdef()
/external/python/cpython2/Modules/
Dparsermodule.c931 #define validate_rparen(ch) validate_terminal(ch, RPAR, ")")