Searched defs:RefPtr (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10/WTF-7600.1.24/wtf/
H A DRefPtr.h35 template<typename T> class RefPtr { class in namespace:WTF
38 ALWAYS_INLINE RefPtr() : m_ptr(nullptr) { } function in class:WTF::RefPtr
39 ALWAYS_INLINE RefPtr(T* ptr) : m_ptr(ptr) { refIfNotNull(ptr); } function in class:WTF::RefPtr
40 ALWAYS_INLINE RefPtr(const RefPtr& o) : m_ptr(o.m_ptr) { refIfNotNull(m_ptr); } function in class:WTF::RefPtr
41 template<typename U> RefPtr(const RefPtr<U>& o) : m_ptr(o.get()) { refIfNotNull(m_ptr); } function in class:WTF::RefPtr
43 ALWAYS_INLINE RefPtr(RefPt function in class:WTF::RefPtr
44 template<typename U> RefPtr(RefPtr<U>&& o) : m_ptr(o.release().leakRef()) { } function in class:WTF::RefPtr
52 RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { } function in class:WTF::RefPtr
89 template<typename T> template<typename U> inline RefPtr<T>::RefPtr(const PassRefPtr<U>& o) function in class:WTF::RefPtr
94 template<typename T> template<typename U> inline RefPtr<T>::RefPtr(PassRef<U>&& reference) function in class:WTF::RefPtr
[all...]

Completed in 120 milliseconds