Home | History | Annotate | Download | only in cpp

Lines Matching refs:PtrType

38     typedef T PtrType;
45 WKRetainPtr(PtrType ptr)
52 WKRetainPtr(WKAdoptTag, PtrType ptr)
60 if (PtrType ptr = m_ptr)
67 if (PtrType ptr = m_ptr)
73 if (PtrType ptr = m_ptr)
77 PtrType get() const { return m_ptr; }
81 PtrType ptr = m_ptr;
87 PtrType leakRef()
89 PtrType ptr = m_ptr;
94 PtrType operator->() const { return m_ptr; }
98 typedef PtrType WKRetainPtr::*UnspecifiedBoolType;
103 WKRetainPtr& operator=(PtrType);
106 void adopt(PtrType);
110 PtrType m_ptr;
115 PtrType optr = o.get();
118 PtrType ptr = m_ptr;
127 PtrType optr = o.get();
130 PtrType ptr = m_ptr;
137 template<typename T> inline WKRetainPtr<T>& WKRetainPtr<T>::operator=(PtrType optr)
141 PtrType ptr = m_ptr;
148 template<typename T> inline void WKRetainPtr<T>::adopt(PtrType optr)
150 PtrType ptr = m_ptr;
160 PtrType ptr = m_ptr;