• Home
  • Raw
  • Download

Lines Matching refs:orelse

241             validate_expr(exp->v.IfExp.orelse, Load);  in validate_expr()
390 validate_stmts(stmt->v.For.orelse); in validate_stmt()
395 validate_stmts(stmt->v.AsyncFor.orelse); in validate_stmt()
399 validate_stmts(stmt->v.While.orelse); in validate_stmt()
403 validate_stmts(stmt->v.If.orelse); in validate_stmt()
443 asdl_seq_LEN(stmt->v.Try.orelse)) { in validate_stmt()
456 (!asdl_seq_LEN(stmt->v.Try.orelse) || in validate_stmt()
457 validate_stmts(stmt->v.Try.orelse)); in validate_stmt()
1926 expr_ty expression, body, orelse; in ast_for_ifexpr() local
1935 orelse = ast_for_expr(c, CHILD(n, 4)); in ast_for_ifexpr()
1936 if (!orelse) in ast_for_ifexpr()
1938 return IfExp(expression, body, orelse, LINENO(n), n->n_col_offset, in ast_for_ifexpr()
3914 asdl_seq *orelse = NULL; in ast_for_if_stmt() local
3928 orelse = _Py_asdl_seq_new(1, c->c_arena); in ast_for_if_stmt()
3929 if (!orelse) in ast_for_if_stmt()
3942 asdl_seq_SET(orelse, 0, in ast_for_if_stmt()
3963 if (orelse != NULL) { in ast_for_if_stmt()
3964 get_last_end_pos(orelse, &end_lineno, &end_col_offset); in ast_for_if_stmt()
3969 If(expression, suite_seq, orelse, in ast_for_if_stmt()
3973 orelse = newobj; in ast_for_if_stmt()
3981 get_last_end_pos(orelse, &end_lineno, &end_col_offset); in ast_for_if_stmt()
3982 return If(expression, suite_seq, orelse, in ast_for_if_stmt()
4178 asdl_seq *body, *handlers = NULL, *orelse = NULL, *finally = NULL; in ast_for_try_stmt() local
4193 orelse = ast_for_suite(c, CHILD(n, nch - 4)); in ast_for_try_stmt()
4194 if (orelse == NULL) in ast_for_try_stmt()
4207 orelse = ast_for_suite(c, CHILD(n, nch - 1)); in ast_for_try_stmt()
4208 if (orelse == NULL) in ast_for_try_stmt()
4238 } else if (orelse != NULL) { in ast_for_try_stmt()
4240 get_last_end_pos(orelse, &end_lineno, &end_col_offset); in ast_for_try_stmt()
4247 return Try(body, handlers, orelse, finally, LINENO(n), n->n_col_offset, in ast_for_try_stmt()