Home
last modified time | relevance | path

Searched defs:NonMovable (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/libs/geometry/test/util/
Drange.cpp66 struct NonMovable struct
68 NonMovable(int ii = 0) : i(ii) {} in NonMovable() function
69 NonMovable(NonMovable const& ii) : i(ii.i) {} in NonMovable() argument
70 NonMovable & operator=(NonMovable const& ii) { i = ii.i; return *this; } in operator =()
71 bool operator==(NonMovable const& ii) const { return i == ii.i; } in operator ==()
72 int i;
/third_party/skia/third_party/externals/abseil-cpp/absl/types/
Doptional_test.cc155 struct NonMovable { struct
156 NonMovable() {} in NonMovable() function
/third_party/abseil-cpp/absl/types/
Doptional_test.cc155 struct NonMovable { struct
156 NonMovable() {} in NonMovable() argument
/third_party/abseil-cpp/absl/status/
Dstatusor_test.cc834 struct NonMovable { struct
835 NonMovable() {} in NonMovable() function
/third_party/skia/third_party/externals/abseil-cpp/absl/status/
Dstatusor_test.cc883 struct NonMovable { struct
884 NonMovable() {} in NonMovable() argument
/third_party/protobuf/src/google/protobuf/
Drepeated_field_unittest.cc681 class NonMovable { in TEST() class