Home | History | Annotate | Download | only in wtf

Lines Matching refs:PtrType

42     typedef T* PtrType;
58 PtrType get() const { return m_ptr; }
61 PtrType leakPtr() const WARN_UNUSED_RETURN;
64 PtrType operator->() const { ASSERT(m_ptr); return m_ptr; }
72 typedef PtrType PassOwnArrayPtr::*UnspecifiedBoolType;
85 PassOwnArrayPtr(PtrType ptr) : m_ptr(ptr) { }
86 PassOwnArrayPtr& operator=(PtrType);
91 explicit PassOwnArrayPtr(PtrType ptr) : m_ptr(ptr) { }
94 mutable PtrType m_ptr;
99 PtrType ptr = m_ptr;
104 template<typename T> inline typename PassOwnArrayPtr<T>::PtrType PassOwnArrayPtr<T>::leakPtr() const
106 PtrType ptr = m_ptr;
112 template<typename T> inline PassOwnArrayPtr<T>& PassOwnArrayPtr<T>::operator=(PtrType optr)
114 PtrType ptr = m_ptr;
125 PtrType ptr = m_ptr;
135 PtrType ptr = m_ptr;