Home | History | Annotate | Download | only in test

Lines Matching refs:IntWrapper

303 class IntWrapper {
305 explicit IntWrapper(int a_value) : value_(a_value) {}
306 IntWrapper(const IntWrapper& other) : value_(other.value_) {}
308 IntWrapper operator=(const IntWrapper& other) {
313 IntWrapper operator+(int other) const { return IntWrapper(value_ + other); }
314 bool operator<(const IntWrapper& other) const {
324 const ParamGenerator<IntWrapper> gen = Range(IntWrapper(0), IntWrapper(2));
325 ParamGenerator<IntWrapper>::iterator it = gen.begin();