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

  /external/chromium/base/memory/
weak_ptr.cc 61 WeakPtrBase::WeakPtrBase() {
64 WeakPtrBase::~WeakPtrBase() {
67 WeakPtrBase::WeakPtrBase(const WeakReference& ref) : ref_(ref) {
weak_ptr.h 124 class BASE_API WeakPtrBase {
126 WeakPtrBase();
127 ~WeakPtrBase();
130 WeakPtrBase(const WeakReference& ref);
154 class WeakPtr : public internal::WeakPtrBase {
161 WeakPtr(const WeakPtr<U>& other) : WeakPtrBase(other), ptr_(other.get()) {
186 : WeakPtrBase(ref), ptr_(ptr) {
  /external/chromium_org/base/memory/
weak_ptr.cc 67 WeakPtrBase::WeakPtrBase() {
70 WeakPtrBase::~WeakPtrBase() {
73 WeakPtrBase::WeakPtrBase(const WeakReference& ref) : ref_(ref) {
weak_ptr.h 133 class BASE_EXPORT WeakPtrBase {
135 WeakPtrBase();
136 ~WeakPtrBase();
139 explicit WeakPtrBase(const WeakReference& ref);
192 class WeakPtr : public internal::WeakPtrBase {
200 WeakPtr(const WeakPtr<U>& other) : WeakPtrBase(other), ptr_(other.ptr_) {
244 : WeakPtrBase(ref),

Completed in 882 milliseconds