Home | History | Annotate | Download | only in test

Lines Matching refs:threshold_

2275   explicit IsGreaterThan(int threshold) : threshold_(threshold) {}
2277 bool operator()(int n) const { return n > threshold_; }
2280 int threshold_;