Searched refs:asdl_seq_SET (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython2/Include/ |
D | asdl.h | 36 #define asdl_seq_SET(S, I, V) { \ macro 42 #define asdl_seq_SET(S, I, V) (S)->elements[I] = (V) macro
|
/external/python/cpython2/Python/ |
D | ast.c | 257 asdl_seq_SET(stmts, k++, s); in PyAST_FromNode() 266 asdl_seq_SET(stmts, k++, s); in PyAST_FromNode() 285 asdl_seq_SET(stmts, 0, Pass(n->n_lineno, n->n_col_offset, in PyAST_FromNode() 301 asdl_seq_SET(stmts, 0, s); in PyAST_FromNode() 312 asdl_seq_SET(stmts, i / 2, s); in PyAST_FromNode() 602 asdl_seq_SET(seq, i / 2, expression); in seq_for_testlist() 650 asdl_seq_SET(args, i, arg); in compiler_complex_args() 716 asdl_seq_SET(defaults, j++, expression); in ast_for_arguments() 740 asdl_seq_SET(args, k++, compiler_complex_args(c, ch)); in ast_for_arguments() 765 asdl_seq_SET(args, k++, name); in ast_for_arguments() [all …]
|
D | Python-ast.c | 3358 asdl_seq_SET(body, i, value); in obj2ast_mod() 3398 asdl_seq_SET(body, i, value); in obj2ast_mod() 3461 asdl_seq_SET(body, i, value); in obj2ast_mod() 3574 asdl_seq_SET(body, i, value); in obj2ast_stmt() 3603 asdl_seq_SET(decorator_list, i, value); in obj2ast_stmt() 3659 asdl_seq_SET(bases, i, value); in obj2ast_stmt() 3688 asdl_seq_SET(body, i, value); in obj2ast_stmt() 3717 asdl_seq_SET(decorator_list, i, value); in obj2ast_stmt() 3780 asdl_seq_SET(targets, i, value); in obj2ast_stmt() 3821 asdl_seq_SET(targets, i, value); in obj2ast_stmt() [all …]
|