Searched refs:IntWrapper (Results 1 – 4 of 4) sorted by relevance
23 struct IntWrapper struct26 IntWrapper(int i) : _i(i) {} in IntWrapper() argument27 bool operator==(IntWrapper const& rhs) const { return _i == rhs._i; } in operator ==() argument78 test_function_value_for<IntWrapper>(); in test_function_value()95 test_function_value_or_for<IntWrapper>(); in test_function_value_or()
24 struct IntWrapper struct27 IntWrapper(int i) : _i(i) {} in IntWrapper() function28 bool operator==(IntWrapper const& rhs) const { return _i == rhs._i; } in operator ==() argument79 test_function_value_for<IntWrapper>(); in test_function_value()96 test_function_value_or_for<IntWrapper>(); in test_function_value_or()
251 class IntWrapper { class253 explicit IntWrapper(int a_value) : value_(a_value) {} in IntWrapper() function in IntWrapper254 IntWrapper(const IntWrapper& other) : value_(other.value_) {} in IntWrapper() function in IntWrapper256 IntWrapper operator=(const IntWrapper& other) { in operator =()261 IntWrapper operator+(int other) const { return IntWrapper(value_ + other); } in operator +()262 bool operator<(const IntWrapper& other) const { in operator <()272 const ParamGenerator<IntWrapper> gen = Range(IntWrapper(0), IntWrapper(2)); in TEST()273 ParamGenerator<IntWrapper>::iterator it = gen.begin(); in TEST()
19 class IntWrapper { class21 IntWrapper() {} in IntWrapper() function in IntWrapper22 IntWrapper(int value) : fValue(value) {} in IntWrapper() function in IntWrapper