Lines Matching refs:expr_ty
22 static int validate_expr(struct validator *, expr_ty, expr_context_ty);
184 validate_expr(struct validator *state, expr_ty exp, expr_context_ty ctx) in validate_expr()
376 ensure_literal_number(expr_ty exp, bool allow_real, bool allow_imaginary) in ensure_literal_number()
386 ensure_literal_negative(expr_ty exp, bool allow_real, bool allow_imaginary) in ensure_literal_negative()
394 expr_ty operand = exp->v.UnaryOp.operand; in ensure_literal_negative()
403 ensure_literal_complex(expr_ty exp) in ensure_literal_complex()
406 expr_ty left = exp->v.BinOp.left; in ensure_literal_complex()
407 expr_ty right = exp->v.BinOp.right; in ensure_literal_complex()
443 validate_pattern_match_value(struct validator *state, expr_ty exp) in validate_pattern_match_value()
543 expr_ty key = asdl_seq_GET(keys, i); in validate_pattern()
574 expr_ty cls = p->v.MatchClass.cls; in validate_pattern()
889 expr_ty expr = asdl_seq_GET(exprs, i); in validate_exprs()
984 expr_ty e = st->v.Expr.value; in _PyAST_GetDocString()