Home
last modified time | relevance | path

Searched refs:IntWrapper (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/libs/optional/test/
Doptional_test_value_access.cpp23 struct IntWrapper struct
26 IntWrapper(int i) : _i(i) {} in IntWrapper() argument
27 bool operator==(IntWrapper const& rhs) const { return _i == rhs._i; } in operator ==() argument
78 test_function_value_for<IntWrapper>(); in test_function_value()
95 test_function_value_or_for<IntWrapper>(); in test_function_value_or()
Doptional_test_old_impl.cpp24 struct IntWrapper struct
27 IntWrapper(int i) : _i(i) {} in IntWrapper() function
28 bool operator==(IntWrapper const& rhs) const { return _i == rhs._i; } in operator ==() argument
79 test_function_value_for<IntWrapper>(); in test_function_value()
96 test_function_value_or_for<IntWrapper>(); in test_function_value_or()
/third_party/googletest/googletest/test/
Dgoogletest-param-test-test.cc251 class IntWrapper { class
253 explicit IntWrapper(int a_value) : value_(a_value) {} in IntWrapper() function in IntWrapper
254 IntWrapper(const IntWrapper& other) : value_(other.value_) {} in IntWrapper() function in IntWrapper
256 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()
/third_party/flutter/skia/tests/
DGrTRecorderTest.cpp19 class IntWrapper { class
21 IntWrapper() {} in IntWrapper() function in IntWrapper
22 IntWrapper(int value) : fValue(value) {} in IntWrapper() function in IntWrapper