Home
last modified time | relevance | path

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

/external/python/cpython3/Parser/
Dgrammar1.c34 else if (lb->lb_type < N_TOKENS) { in PyGrammar_LabelRepr()
/external/python/cpython2/Include/
Dtoken.h66 #define N_TOKENS 53 macro
/external/python/cpython2/Lib/lib2to3/pgen2/
Dtoken.py66 N_TOKENS = 57 variable
/external/python/cpython3/Lib/lib2to3/pgen2/
Dtoken.py69 N_TOKENS = 60 variable
/external/python/cpython3/Include/
Dtoken.h73 #define N_TOKENS 63 macro
/external/python/cpython2/Lib/
Dtokenize.py39 COMMENT = N_TOKENS
41 NL = N_TOKENS + 1
43 N_TOKENS += 2
Dtoken.py64 N_TOKENS = 53 variable
/external/python/cpython3/Lib/
Dtoken.py70 N_TOKENS = 63 variable
/external/python/cpython2/Doc/library/
Dtoken.rst99 N_TOKENS
/external/python/cpython3/Doc/library/
Dtoken-list.inc216 .. data:: N_TOKENS
/external/yapf/yapf/yapflib/
Dformat_token.py28 CONTINUATION = token.N_TOKENS
/external/python/cpython2/Parser/
Dgrammar.c188 for (i = 0; i < (int)N_TOKENS; i++) { in translabel()
/external/python/cpython3/Modules/
Dparsermodule.c664 || (ISTERMINAL(ch_type) && (ch_type >= N_TOKENS)) in validate_node()
/external/yapf/
DCHANGELOG10 - There's no need to increase N_TOKENS. In fact, it causes other things which
/external/python/cpython3/Parser/pegen/
Dpegen.c466 if (0 <= type && type <= N_TOKENS) {