Home | History | Annotate | Download | only in public

Lines Matching refs:m_ptr

46     WebPrivatePtr() : m_ptr(0) { }
47 ~WebPrivatePtr() { WEBKIT_ASSERT(!m_ptr); }
49 bool isNull() const { return !m_ptr; }
53 : m_ptr(prp.releaseRef())
64 T* p = other.m_ptr;
79 return m_ptr;
84 ASSERT(m_ptr);
85 return m_ptr;
94 if (m_ptr)
95 m_ptr->deref();
96 m_ptr = p;
100 T* m_ptr;