Lines Matching refs:SharedCount
48 class SharedCount class
74 SharedCount() in SharedCount() function in SharedCount
80 ~SharedCount() in ~SharedCount()
95 friend void swap<> (SharedCount & lhs, SharedCount & rhs); // nothrow
97 SharedCount (SharedCount const & rhs); // nothrow
98 SharedCount & operator= (SharedCount const & rhs); // nothrow
102 inline void swap (SharedCount & lhs, SharedCount & rhs) // nothrow in swap()
107 SharedCount::SharedCount (SharedCount const & rhs) // nothrow in SharedCount() function in SharedCount
113 SharedCount &
114 SharedCount::operator= (SharedCount const & rhs) // nothrow in operator =()
116 SharedCount tmp(rhs); in operator =()
117 swap<SharedCount>(tmp, *this); in operator =()
121 SharedCount::Allocator &
122 SharedCount::Allocator::get() in get()
128 SharedCount::Allocator::Allocator() in Allocator()
143 SharedCount::Allocator::~Allocator() in ~Allocator()
244 SharedCount m_refcount;
269 swap<SharedCount>(lhs.m_refcount, rhs.m_refcount); in swap()
290 SharedCount m_refcount;
327 swap<SharedCount>(lhs.m_refcount, rhs.m_refcount); in swap()
1515 SharedCount m_count;