HomeSort by relevance Sort by last modified time
    Searched defs:WeakPtr (Results 1 - 4 of 4) sorted by null

  /external/deqp/framework/delibs/decpp/
deSharedPtr.hpp 62 typename ReferenceCount<threadSafe>::Type weakRefCount; //!< WeakPtr references + StrongPtr references.
76 class WeakPtr;
111 explicit SharedPtr (const WeakPtr<Y, DeleterY, threadSafe>& other);
120 SharedPtr& operator= (const WeakPtr<Y, DeleterY, threadSafe>& other);
137 void acquireFromWeak (const WeakPtr<T, Deleter, threadSafe>& other);
143 friend class WeakPtr<T, Deleter, threadSafe>;
152 * WeakPtr manages weak references to objects owned by SharedPtr. Shared
157 * WeakPtr can be converted back to SharedPtr but that operation can fail
164 class WeakPtr
167 WeakPtr (void)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
WeakPtr.h 84 class WeakPtr {
87 WeakPtr() { }
88 WeakPtr(std::nullptr_t) { }
89 WeakPtr(PassRefPtr<WeakReference<T> > ref) : m_ref(ref) { }
100 typedef RefPtr<WeakReference<T> > (WeakPtr::*UnspecifiedBoolType);
101 operator UnspecifiedBoolType() const { return get() ? &WeakPtr::m_ref : 0; }
107 template<typename T, typename U> inline bool operator==(const WeakPtr<T>& a, const WeakPtr<U>& b)
112 template<typename T, typename U> inline bool operator!=(const WeakPtr<T>& a, const WeakPtr<U>& b
    [all...]
  /external/chromium_org/base/memory/
weak_ptr.h 30 // static void StartNew(const WeakPtr<Controller>& controller) {
35 // Worker(const WeakPtr<Controller>& controller)
41 // WeakPtr<Controller> controller_;
54 // To ensure correct use, the first time a WeakPtr issued by a WeakPtrFactory
76 template <typename T> class WeakPtr;
79 // These classes are part of the WeakPtr implementation.
85 // via base::WeakPtr::~WeakPtr().
129 // This class simplifies the implementation of WeakPtr's type conversion
131 // WeakPtr<T> cannot access the private members of WeakPtr<U>, so thi
    [all...]
  /external/chromium_org/chrome/browser/local_discovery/
service_discovery_client_mdns.cc 22 typedef base::WeakPtr<Proxy> WeakPtr;
62 WeakPtr GetWeakPtr() {
123 typedef base::WeakPtr<Proxy> WeakPtr;
199 static void OnCallback(const WeakPtr& proxy,
239 const WeakPtr& proxy,
277 static void OnCallback(const WeakPtr& proxy,

Completed in 78 milliseconds