Home | History | Annotate | Download | only in test

Lines Matching refs:IntWrapper

244 class IntWrapper {
246 explicit IntWrapper(int value) : value_(value) {}
247 IntWrapper(const IntWrapper& other) : value_(other.value_) {}
249 IntWrapper operator=(const IntWrapper& other) {
254 IntWrapper operator+(int other) const { return IntWrapper(value_ + other); }
255 bool operator<(const IntWrapper& other) const {
265 const ParamGenerator<IntWrapper> gen = Range(IntWrapper(0), IntWrapper(2));
266 ParamGenerator<IntWrapper>::iterator it = gen.begin();