Searched refs:setLowerBound (Results 1 – 3 of 3) sorted by relevance
96 void setLowerBound(Expr *E) { SubExprs[LOWER_BOUND] = E; } in setLowerBound() function
1021 public CallCount setLowerBound(long lowerBound) {1056 public CallCount times(int times) { return setLowerBound(times).setUpperBound(times); }1057 public CallCount atLeast(long n) { return setLowerBound(n).setUpperBound(Long.MAX_VALUE); }1058 public CallCount atLeastOnce() { return setLowerBound(1).setUpperBound(Long.MAX_VALUE); }1059 public CallCount between(long n, long m) { return setLowerBound(n).setUpperBound(m); }
615 E->setLowerBound(Reader.ReadSubExpr()); in VisitOMPArraySectionExpr()