Searched defs:MoveOnly (Results 1 – 9 of 9) 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() function116 std::unique_ptr<int> ip1;117 std::unique_ptr<int> ip2;
40 struct MoveOnly { struct42 explicit MoveOnly(int value) : value(value) {} in MoveOnly() function46 int value = 0;
380 struct MoveOnly { struct382 explicit MoveOnly(int value) : value(value) {} in MoveOnly() argument385 int value = 5;
128 class MoveOnly { class in testing::gmock_nice_strict_test::MockBaz139 MockBaz(MoveOnly) {} in MockBaz() argument
943 class MoveOnly { class945 explicit MoveOnly(int i) : i_(i) {} in MoveOnly() function in testing::gmock_matchers_test::__anonbc8854d80111::MoveOnly
877 struct MoveOnly { struct878 MoveOnly() {} in MoveOnly() function879 MoveOnly(MoveOnly&&) {} in MoveOnly() function880 MoveOnly& operator=(MoveOnly&&) { return *this; } in operator =()
174 MoveOnly, enumerator
320 struct MoveOnly { struct321 MoveOnly() {} in MoveOnly() function337 TEST(InlinedVectorTest, MoveOnly) { in TEST() argument
336 TEST(ExchangeTest, MoveOnly) { in TEST() argument