Home
last modified time | relevance | path

Searched refs:_PyPegen_star_etc (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Grammar/
Dpython.gram253 _PyPegen_star_etc(p, a, b, c) }
255 _PyPegen_star_etc(p, NULL, b, c) }
256 | a=kwds { _PyPegen_star_etc(p, NULL, NULL, a) }
364 _PyPegen_star_etc(p, a, b, c) }
366 _PyPegen_star_etc(p, NULL, b, c) }
367 | a=lambda_kwds { _PyPegen_star_etc(p, NULL, NULL, a) }
/external/python/cpython3/Parser/pegen/
Dpegen.h251 StarEtc *_PyPegen_star_etc(Parser *, arg_ty, asdl_seq *, arg_ty);
Dpegen.c1676 _PyPegen_star_etc(Parser *p, arg_ty vararg, asdl_seq *kwonlyargs, arg_ty kwarg) in _PyPegen_star_etc() function
Dparse.c5532 _res = _PyPegen_star_etc ( p , a , b , c ); in star_etc_rule()
5565 _res = _PyPegen_star_etc ( p , NULL , b , c ); in star_etc_rule()
5589 _res = _PyPegen_star_etc ( p , NULL , NULL , a ); in star_etc_rule()
7555 _res = _PyPegen_star_etc ( p , a , b , c ); in lambda_star_etc_rule()
7588 _res = _PyPegen_star_etc ( p , NULL , b , c ); in lambda_star_etc_rule()
7612 _res = _PyPegen_star_etc ( p , NULL , NULL , a ); in lambda_star_etc_rule()