Home | History | Annotate | Download | only in wtf

Lines Matching refs:PtrType

37     typedef T* PtrType;
52 PtrType get() const { return m_ptr; }
56 PtrType leakPtr() WARN_UNUSED_RETURN;
59 PtrType operator->() const { ASSERT(m_ptr); return m_ptr; }
80 explicit OwnArrayPtr(PtrType ptr) : m_ptr(ptr) { }
81 void set(PtrType);
85 PtrType m_ptr;
95 PtrType ptr = m_ptr;
102 PtrType ptr = m_ptr;
107 template<typename T> inline typename OwnArrayPtr<T>::PtrType OwnArrayPtr<T>::leakPtr()
109 PtrType ptr = m_ptr;
115 template<typename T> inline void OwnArrayPtr<T>::set(PtrType ptr)
118 PtrType oldPtr = m_ptr;
126 PtrType ptr = m_ptr;
135 PtrType ptr = m_ptr;