Lines Matching refs:RefCountContainer
187 class RefCountContainer { class
189 explicit RefCountContainer(RefCountData& data) : data_(data) { in RefCountContainer() function in android::idmap2::RefCountContainer
193 RefCountContainer(RefCountContainer const&) = delete;
195 RefCountContainer(RefCountContainer&& rhs) noexcept : data_(rhs.data_) { in RefCountContainer() function in android::idmap2::RefCountContainer
199 RefCountContainer& operator=(RefCountContainer const&) = delete;
201 RefCountContainer& operator=(RefCountContainer&& rhs) noexcept { in operator =()
207 ~RefCountContainer() { in ~RefCountContainer()
216 ASSERT_TRUE(std::is_move_constructible<RefCountContainer>::value); in TEST()
217 ASSERT_TRUE(std::is_move_assignable<RefCountContainer>::value); in TEST()
218 ASSERT_FALSE(std::is_copy_constructible<RefCountContainer>::value); in TEST()
219 ASSERT_FALSE(std::is_copy_assignable<RefCountContainer>::value); in TEST()
222 { Result<RefCountContainer> r(RefCountContainer{rc}); } in TEST()