PtrType           433 Source/platform/graphics/ImageDecodingStore.cpp         const typename U::MappedType::PtrType cacheEntry = cacheMap->get(cacheIdentifierList[i]);
PtrType           352 Source/wtf/Functional.h     static typename RetainPtr<T>::PtrType unwrap(const StorageType& value) { return value.get(); }
PtrType           154 Source/wtf/HashTraits.h         typedef typename OwnPtr<P>::PtrType PeekOutType;
PtrType            66 Source/wtf/OwnPtr.h         PtrType get() const { return m_ptr; }
PtrType            70 Source/wtf/OwnPtr.h         PtrType leakPtr() WARN_UNUSED_RETURN;
PtrType            73 Source/wtf/OwnPtr.h         PtrType operator->() const { ASSERT(m_ptr); return m_ptr; }
PtrType            80 Source/wtf/OwnPtr.h         typedef PtrType OwnPtr::*UnspecifiedBoolType;
PtrType           110 Source/wtf/OwnPtr.h         PtrType m_ptr;
PtrType           126 Source/wtf/OwnPtr.h         PtrType ptr = m_ptr;
PtrType           133 Source/wtf/OwnPtr.h         PtrType ptr = m_ptr;
PtrType           138 Source/wtf/OwnPtr.h     template<typename T> inline typename OwnPtr<T>::PtrType OwnPtr<T>::leakPtr()
PtrType           140 Source/wtf/OwnPtr.h         PtrType ptr = m_ptr;
PtrType           155 Source/wtf/OwnPtr.h         PtrType ptr = m_ptr;
PtrType           165 Source/wtf/OwnPtr.h         PtrType ptr = m_ptr;
PtrType           186 Source/wtf/OwnPtr.h         PtrType ptr = m_ptr;
PtrType           197 Source/wtf/OwnPtr.h         PtrType ptr = m_ptr;
PtrType           231 Source/wtf/OwnPtr.h     template<typename T> inline typename OwnPtr<T>::PtrType getPtr(const OwnPtr<T>& p)
PtrType            57 Source/wtf/PassOwnPtr.h         PtrType get() const { return m_ptr; }
PtrType            59 Source/wtf/PassOwnPtr.h         PtrType leakPtr() const WARN_UNUSED_RETURN;
PtrType            62 Source/wtf/PassOwnPtr.h         PtrType operator->() const { ASSERT(m_ptr); return m_ptr; }
PtrType            67 Source/wtf/PassOwnPtr.h         typedef PtrType PassOwnPtr::*UnspecifiedBoolType;
PtrType            75 Source/wtf/PassOwnPtr.h         explicit PassOwnPtr(PtrType ptr) : m_ptr(ptr) { }
PtrType            86 Source/wtf/PassOwnPtr.h         mutable PtrType m_ptr;
PtrType            95 Source/wtf/PassOwnPtr.h     template<typename T> inline typename PassOwnPtr<T>::PtrType PassOwnPtr<T>::leakPtr() const
PtrType            97 Source/wtf/PassOwnPtr.h         PtrType ptr = m_ptr;
PtrType            70 Source/wtf/RetainPtr.h         RetainPtr(PtrType ptr) : m_ptr(ptr) { if (ptr) CFRetain(ptr); }
PtrType            72 Source/wtf/RetainPtr.h         RetainPtr(AdoptCFTag, PtrType ptr) : m_ptr(ptr) { }
PtrType            73 Source/wtf/RetainPtr.h         RetainPtr(AdoptNSTag, PtrType ptr) : m_ptr(ptr) { adoptNSReference(ptr); }
PtrType            75 Source/wtf/RetainPtr.h         RetainPtr(const RetainPtr& o) : m_ptr(o.m_ptr) { if (PtrType ptr = m_ptr) CFRetain(ptr); }
PtrType            85 Source/wtf/RetainPtr.h         ~RetainPtr() { if (PtrType ptr = m_ptr) CFRelease(ptr); }
PtrType            90 Source/wtf/RetainPtr.h         PtrType leakRef() WARN_UNUSED_RETURN;
PtrType            92 Source/wtf/RetainPtr.h         PtrType get() const { return m_ptr; }
PtrType            93 Source/wtf/RetainPtr.h         PtrType operator->() const { return m_ptr; }
PtrType            95 Source/wtf/RetainPtr.h         explicit operator PtrType() const { return m_ptr; }
PtrType           101 Source/wtf/RetainPtr.h         typedef PtrType RetainPtr::*UnspecifiedBoolType;
PtrType           106 Source/wtf/RetainPtr.h         RetainPtr& operator=(PtrType);
PtrType           118 Source/wtf/RetainPtr.h         void adoptCF(PtrType);
PtrType           119 Source/wtf/RetainPtr.h         void adoptNS(PtrType);
PtrType           124 Source/wtf/RetainPtr.h         static PtrType hashTableDeletedValue() { return reinterpret_cast<PtrType>(-1); }
PtrType           126 Source/wtf/RetainPtr.h         PtrType m_ptr;
PtrType           132 Source/wtf/RetainPtr.h         if (PtrType ptr = m_ptr)
PtrType           138 Source/wtf/RetainPtr.h         if (PtrType ptr = m_ptr) {
PtrType           144 Source/wtf/RetainPtr.h     template<typename T> inline typename RetainPtr<T>::PtrType RetainPtr<T>::leakRef()
PtrType           146 Source/wtf/RetainPtr.h         PtrType ptr = m_ptr;
PtrType           153 Source/wtf/RetainPtr.h         PtrType optr = o.get();
PtrType           156 Source/wtf/RetainPtr.h         PtrType ptr = m_ptr;
PtrType           165 Source/wtf/RetainPtr.h         PtrType optr = o.get();
PtrType           168 Source/wtf/RetainPtr.h         PtrType ptr = m_ptr;
PtrType           175 Source/wtf/RetainPtr.h     template<typename T> inline RetainPtr<T>& RetainPtr<T>::operator=(PtrType optr)
PtrType           179 Source/wtf/RetainPtr.h         PtrType ptr = m_ptr;
PtrType           190 Source/wtf/RetainPtr.h         PtrType ptr = m_ptr;
PtrType           211 Source/wtf/RetainPtr.h     template<typename T> inline void RetainPtr<T>::adoptCF(PtrType optr)
PtrType           213 Source/wtf/RetainPtr.h         PtrType ptr = m_ptr;
PtrType           219 Source/wtf/RetainPtr.h     template<typename T> inline void RetainPtr<T>::adoptNS(PtrType optr)
PtrType           223 Source/wtf/RetainPtr.h         PtrType ptr = m_ptr;
PtrType           290 Source/wtf/RetainPtr.h     template<typename P> struct PtrHash<RetainPtr<P> > : PtrHash<typename RetainPtr<P>::PtrType> {
PtrType           291 Source/wtf/RetainPtr.h         using PtrHash<typename RetainPtr<P>::PtrType>::hash;
PtrType           293 Source/wtf/RetainPtr.h         using PtrHash<typename RetainPtr<P>::PtrType>::equal;
PtrType           295 Source/wtf/RetainPtr.h         static bool equal(typename RetainPtr<P>::PtrType a, const RetainPtr<P>& b) { return a == b; }
PtrType           296 Source/wtf/RetainPtr.h         static bool equal(const RetainPtr<P>& a, typename RetainPtr<P>::PtrType b) { return a == b; }