Searched refs:_PyAST_Tuple (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Grammar/ |
D | python.gram | 452 … _PyAST_Tuple(CHECK(asdl_expr_seq*, _PyPegen_seq_insert_in_front(p, value, values)), Load, EXTRA) } 676 _PyAST_Tuple(CHECK(asdl_expr_seq*, _PyPegen_seq_insert_in_front(p, a, b)), Load, EXTRA) } 677 …| a=expression ',' { _PyAST_Tuple(CHECK(asdl_expr_seq*, _PyPegen_singleton_seq(p, a)), Load, EXTRA… 693 _PyAST_Tuple(CHECK(asdl_expr_seq*, _PyPegen_seq_insert_in_front(p, a, b)), Load, EXTRA) } 694 …| a=star_expression ',' { _PyAST_Tuple(CHECK(asdl_expr_seq*, _PyPegen_singleton_seq(p, a)), Load, … 841 | a[asdl_expr_seq*]=','.(slice | starred_expression)+ [','] { _PyAST_Tuple(a, Load, EXTRA) } 947 _PyAST_Tuple(a, Load, EXTRA) } 1048 _PyAST_Tuple(CHECK(asdl_expr_seq*, _PyPegen_seq_insert_in_front(p, a, b)), Store, EXTRA) } 1069 | '(' a=[star_targets_tuple_seq] ')' { _PyAST_Tuple(a, Store, EXTRA) } 1108 | '(' a=[del_targets] ')' { _PyAST_Tuple(a, Del, EXTRA) }
|
/external/python/cpython3/Include/internal/ |
D | pycore_ast.h | 843 expr_ty _PyAST_Tuple(asdl_expr_seq * elts, expr_context_ty ctx, int lineno, int
|
/external/python/cpython3/Parser/ |
D | action_helpers.c | 269 return _PyAST_Tuple( in _set_tuple_context()
|
D | parser.c | 7547 …_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq* , _PyPegen_seq_insert_in_front ( p , value , values )… in subject_expr_rule() 11062 …_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq* , _PyPegen_seq_insert_in_front ( p , a , b ) ) , Load… in expressions_rule() 11098 …_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq* , _PyPegen_singleton_seq ( p , a ) ) , Load , EXTRA ); in expressions_rule() 11450 …_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq* , _PyPegen_seq_insert_in_front ( p , a , b ) ) , Load… in star_expressions_rule() 11486 …_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq* , _PyPegen_singleton_seq ( p , a ) ) , Load , EXTRA ); in star_expressions_rule() 14590 _res = _PyAST_Tuple ( a , Load , EXTRA ); in slices_rule() 16614 _res = _PyAST_Tuple ( a , Load , EXTRA ); in tuple_rule() 18194 …_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq* , _PyPegen_seq_insert_in_front ( p , a , b ) ) , Stor… in star_targets_rule() 18671 _res = _PyAST_Tuple ( a , Store , EXTRA ); in star_atom_rule() 19563 _res = _PyAST_Tuple ( a , Del , EXTRA ); in del_t_atom_rule()
|
/external/python/cpython3/Python/ |
D | Python-ast.c | 7746 _PyAST_Tuple(asdl_expr_seq * elts, expr_context_ty ctx, int lineno, int in _PyAST_Tuple() function 14840 *out = _PyAST_Tuple(elts, ctx, lineno, col_offset, end_lineno, in obj2ast_expr()
|
/external/python/cpython3/Doc/data/ |
D | python3.13.abi | 11937 …<function-decl name='_PyAST_Tuple' filepath='./Include/internal/pycore_ast.h' line='843' column='1…
|