Searched refs:_PyPegen_set_expr_context (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Grammar/ |
D | python.gram | 149 _PyAST_AnnAssign(CHECK(expr_ty, _PyPegen_set_expr_context(p, a, Store)), b, c, 1, EXTRA) 533 _PyPegen_set_expr_context(p, name, Store) } 638 _PyAST_TypeAlias(CHECK(expr_ty, _PyPegen_set_expr_context(p, n, Store)), t, b, EXTRA)) } 710 _PyAST_NamedExpr(CHECK(expr_ty, _PyPegen_set_expr_context(p, a, Store)), b, EXTRA)) } 1058 _PyAST_Starred(CHECK(expr_ty, _PyPegen_set_expr_context(p, a, Store)), Store, EXTRA) } 1067 | a=NAME { _PyPegen_set_expr_context(p, a, Store) } 1068 | '(' a=target_with_star_atom ')' { _PyPegen_set_expr_context(p, a, Store) } 1074 | a=NAME { _PyPegen_set_expr_context(p, a, Store) } 1106 | a=NAME { _PyPegen_set_expr_context(p, a, Del) } 1107 | '(' a=del_target ')' { _PyPegen_set_expr_context(p, a, Del) }
|
/external/python/cpython3/Parser/ |
D | pegen.h | 308 expr_ty _PyPegen_set_expr_context(Parser *, expr_ty, expr_context_ty);
|
D | action_helpers.c | 255 asdl_seq_SET(new_seq, i, _PyPegen_set_expr_context(p, e, ctx)); in _set_seq_context() 301 return _PyAST_Starred(_PyPegen_set_expr_context(p, e->v.Starred.value, ctx), in _set_starred_context() 307 _PyPegen_set_expr_context(Parser *p, expr_ty expr, expr_context_ty ctx) in _PyPegen_set_expr_context() function
|
D | parser.c | 2306 …le annotation syntax is" , _PyAST_AnnAssign ( CHECK ( expr_ty , _PyPegen_set_expr_context ( p , a … in assignment_rule() 9048 _res = _PyPegen_set_expr_context ( p , name , Store ); in pattern_capture_target_rule() 10520 …12 , "Type statement is" , _PyAST_TypeAlias ( CHECK ( expr_ty , _PyPegen_set_expr_context ( p , n … in type_alias_rule() 11793 …ignment expressions are" , _PyAST_NamedExpr ( CHECK ( expr_ty , _PyPegen_set_expr_context ( p , a … in assignment_expression_rule() 18386 …_res = _PyAST_Starred ( CHECK ( expr_ty , _PyPegen_set_expr_context ( p , a , Store ) ) , Store , … in star_target_rule() 18602 _res = _PyPegen_set_expr_context ( p , a , Store ); in star_atom_rule() 18632 _res = _PyPegen_set_expr_context ( p , a , Store ); in star_atom_rule() 18772 _res = _PyPegen_set_expr_context ( p , a , Store ); in single_target_rule() 19494 _res = _PyPegen_set_expr_context ( p , a , Del ); in del_t_atom_rule() 19524 _res = _PyPegen_set_expr_context ( p , a , Del ); in del_t_atom_rule()
|
/external/python/cpython3/Doc/data/ |
D | python3.13.abi | 13153 …<function-decl name='_PyPegen_set_expr_context' filepath='Parser/pegen.h' line='308' column='1' vi…
|