Searched refs:AffineExprMatcher (Results 1 – 1 of 1) sorted by relevance
39 class AffineExprMatcher { class41 AffineExprMatcher();42 AffineExprMatcher(const AffineExprMatcher &other);44 AffineExprMatcher operator+(AffineExprMatcher other) { in operator +()45 return AffineExprMatcher(AffineExprKind::Add, *this, other); in operator +()47 AffineExprMatcher operator*(AffineExprMatcher other) { in operator *()48 return AffineExprMatcher(AffineExprKind::Mul, *this, other); in operator *()50 AffineExprMatcher floorDiv(AffineExprMatcher other) { in floorDiv()51 return AffineExprMatcher(AffineExprKind::FloorDiv, *this, other); in floorDiv()53 AffineExprMatcher ceilDiv(AffineExprMatcher other) { in ceilDiv()[all …]