Searched refs:_PyPegen_set_expr_context (Results 1 – 4 of 4) sorted by relevance
| /third_party/python/Grammar/ |
| D | python.gram | 98 _PyAST_AnnAssign(CHECK(expr_ty, _PyPegen_set_expr_context(p, a, Store)), b, c, 1, EXTRA) 304 _PyPegen_set_expr_context(p, name, Store) } 516 …| a=NAME ':=' ~ b=expression { _PyAST_NamedExpr(CHECK(expr_ty, _PyPegen_set_expr_context(p, a, Sto… 785 _PyAST_Starred(CHECK(expr_ty, _PyPegen_set_expr_context(p, a, Store)), Store, EXTRA) } 792 | a=NAME { _PyPegen_set_expr_context(p, a, Store) } 793 | '(' a=target_with_star_atom ')' { _PyPegen_set_expr_context(p, a, Store) } 799 | a=NAME { _PyPegen_set_expr_context(p, a, Store) } 811 | a=NAME { _PyPegen_set_expr_context(p, a, Del) } 812 | '(' a=del_target ')' { _PyPegen_set_expr_context(p, a, Del) }
|
| /third_party/python/Parser/ |
| D | pegen.h | 268 expr_ty _PyPegen_set_expr_context(Parser *, expr_ty, expr_context_ty);
|
| D | pegen.c | 1782 asdl_seq_SET(new_seq, i, _PyPegen_set_expr_context(p, e, ctx)); in _set_seq_context() 1828 return _PyAST_Starred(_PyPegen_set_expr_context(p, e->v.Starred.value, ctx), in _set_starred_context() 1834 _PyPegen_set_expr_context(Parser *p, expr_ty expr, expr_context_ty ctx) in _PyPegen_set_expr_context() function
|
| D | parser.c | 2366 …le annotation syntax is" , _PyAST_AnnAssign ( CHECK ( expr_ty , _PyPegen_set_expr_context ( p , a … in assignment_rule() 6969 _res = _PyPegen_set_expr_context ( p , name , Store ); in pattern_capture_target_rule() 10575 …_res = _PyAST_NamedExpr ( CHECK ( expr_ty , _PyPegen_set_expr_context ( p , a , Store ) ) , b , EX… in assignment_expression_rule() 17124 …_res = _PyAST_Starred ( CHECK ( expr_ty , _PyPegen_set_expr_context ( p , a , Store ) ) , Store , … in star_target_rule() 17342 _res = _PyPegen_set_expr_context ( p , a , Store ); in star_atom_rule() 17372 _res = _PyPegen_set_expr_context ( p , a , Store ); in star_atom_rule() 17513 _res = _PyPegen_set_expr_context ( p , a , Store ); in single_target_rule() 17901 _res = _PyPegen_set_expr_context ( p , a , Del ); in del_t_atom_rule() 17931 _res = _PyPegen_set_expr_context ( p , a , Del ); in del_t_atom_rule()
|