Home
last modified time | relevance | path

Searched refs:_PyPegen_lookahead_with_int (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Parser/pegen/
Dpegen.h123 int _PyPegen_lookahead_with_int(int, Token *(func)(Parser *, int), Parser *, int);
Dparse.c1431 _PyPegen_lookahead_with_int(0, _PyPegen_expect_token, p, 13) // token=';' in simple_stmt_rule()
1583 _PyPegen_lookahead_with_int(1, _PyPegen_expect_token, p, 500) // token='return' in small_stmt_rule()
1625 _PyPegen_lookahead_with_int(1, _PyPegen_expect_token, p, 501) // token='raise' in small_stmt_rule()
1679 _PyPegen_lookahead_with_int(1, _PyPegen_expect_token, p, 503) // token='del' in small_stmt_rule()
1700 _PyPegen_lookahead_with_int(1, _PyPegen_expect_token, p, 504) // token='yield' in small_stmt_rule()
1721 _PyPegen_lookahead_with_int(1, _PyPegen_expect_token, p, 505) // token='assert' in small_stmt_rule()
1808 _PyPegen_lookahead_with_int(1, _PyPegen_expect_token, p, 508) // token='global' in small_stmt_rule()
1829 _PyPegen_lookahead_with_int(1, _PyPegen_expect_token, p, 509) // token='nonlocal' in small_stmt_rule()
1896 _PyPegen_lookahead_with_int(1, _PyPegen_expect_token, p, 510) // token='if' in compound_stmt_rule()
1980 _PyPegen_lookahead_with_int(1, _PyPegen_expect_token, p, 511) // token='try' in compound_stmt_rule()
[all …]
Dpegen.c761 _PyPegen_lookahead_with_int(int positive, Token *(func)(Parser *, int), Parser *p, int arg) in _PyPegen_lookahead_with_int() function