Searched defs: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 ==() argument
24 struct IntWrapper struct27 IntWrapper(int i) : _i(i) {} in IntWrapper() function28 bool operator==(IntWrapper const& rhs) const { return _i == rhs._i; } in operator ==() argument
19 class IntWrapper { class21 IntWrapper() {} in IntWrapper() function in IntWrapper22 IntWrapper(int value) : fValue(value) {} in IntWrapper() function in IntWrapper
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 IntWrapper