Home
last modified time | relevance | path

Searched refs:_PyAST_Tuple (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Grammar/
Dpython.gram229_PyAST_Tuple(CHECK(asdl_expr_seq*, _PyPegen_seq_insert_in_front(p, value, values)), Load, EXTRA) }
502 _PyAST_Tuple(CHECK(asdl_expr_seq*, _PyPegen_seq_insert_in_front(p, a, b)), Load, EXTRA) }
503 …| a=star_expression ',' { _PyAST_Tuple(CHECK(asdl_expr_seq*, _PyPegen_singleton_seq(p, a)), Load, …
527 _PyAST_Tuple(CHECK(asdl_expr_seq*, _PyPegen_seq_insert_in_front(p, a, b)), Load, EXTRA) }
528 …| a=expression ',' { _PyAST_Tuple(CHECK(asdl_expr_seq*, _PyPegen_singleton_seq(p, a)), Load, EXTRA…
682 | a[asdl_expr_seq*]=','.slice+ [','] { _PyAST_Tuple(a, Load, EXTRA) }
706 _PyAST_Tuple(a, Load, EXTRA) }
778 _PyAST_Tuple(CHECK(asdl_expr_seq*, _PyPegen_seq_insert_in_front(p, a, b)), Store, EXTRA) }
794 | '(' a=[star_targets_tuple_seq] ')' { _PyAST_Tuple(a, Store, EXTRA) }
813 | '(' a=[del_targets] ')' { _PyAST_Tuple(a, Del, EXTRA) }
/third_party/python/Include/internal/
Dpycore_ast.h781 expr_ty _PyAST_Tuple(asdl_expr_seq * elts, expr_context_ty ctx, int lineno, int
/third_party/python/Parser/
Dpegen.c1796 return _PyAST_Tuple( in _set_tuple_context()
Dparser.c5457 …_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq * , _PyPegen_seq_insert_in_front ( p , value , values … in subject_expr_rule()
10228 …_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq * , _PyPegen_seq_insert_in_front ( p , a , b ) ) , Loa… in star_expressions_rule()
10264 …_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq * , _PyPegen_singleton_seq ( p , a ) ) , Load , EXTRA … in star_expressions_rule()
10785 …_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq * , _PyPegen_seq_insert_in_front ( p , a , b ) ) , Loa… in expressions_rule()
10821 …_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq * , _PyPegen_singleton_seq ( p , a ) ) , Load , EXTRA … in expressions_rule()
14662 _res = _PyAST_Tuple ( a , Load , EXTRA ); in slices_rule()
15325 _res = _PyAST_Tuple ( a , Load , EXTRA ); in tuple_rule()
16929 …_res = _PyAST_Tuple ( CHECK ( asdl_expr_seq * , _PyPegen_seq_insert_in_front ( p , a , b ) ) , Sto… in star_targets_rule()
17411 _res = _PyAST_Tuple ( a , Store , EXTRA ); in star_atom_rule()
17970 _res = _PyAST_Tuple ( a , Del , EXTRA ); in del_t_atom_rule()
/third_party/python/Python/
DPython-ast.c3181 _PyAST_Tuple(asdl_expr_seq * elts, expr_context_ty ctx, int lineno, int in _PyAST_Tuple() function
9517 *out = _PyAST_Tuple(elts, ctx, lineno, col_offset, end_lineno, in obj2ast_expr()