Searched defs:MoveOnly (Results 1 – 8 of 8) sorted by relevance
112 struct MoveOnly { struct114 explicit MoveOnly(int i1) : ip1{new int{i1}} {} in MoveOnly() argument115 MoveOnly(int i1, int i2) : ip1{new int{i1}}, ip2{new int{i2}} {} in MoveOnly() argument116 std::unique_ptr<int> ip1;117 std::unique_ptr<int> ip2;
40 struct MoveOnly { struct42 explicit MoveOnly(int value) : value(value) {} in MoveOnly() argument46 int value = 0;
380 struct MoveOnly { struct382 explicit MoveOnly(int value) : value(value) {} in MoveOnly() argument385 int value = 5;
125 class MoveOnly { class in testing::gmock_nice_strict_test::MockBaz136 MockBaz(MoveOnly) {} in MockBaz() argument
1054 class MoveOnly { class1056 explicit MoveOnly(int i) : i_(i) {} in MoveOnly() function in testing::gmock_matchers_test::__anonbffc6dba0111::MoveOnly
877 struct MoveOnly { struct878 MoveOnly() {} in MoveOnly() function879 MoveOnly(MoveOnly&&) {} in MoveOnly() argument880 MoveOnly& operator=(MoveOnly&&) { return *this; } in operator =()
320 struct MoveOnly { struct321 MoveOnly() {} in MoveOnly() function337 TEST(InlinedVectorTest, MoveOnly) { in TEST() argument
336 TEST(ExchangeTest, MoveOnly) { in TEST() argument