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

/external/sfntly/cpp/src/sfntly/port/
H A Drefcount.h22 // type inherits from RefCounted<>, which have AddRef and Release just like
26 // class Foo : public RefCounted<Foo> {
44 // 2. All RefCounted objects must be instantiated on the heap. Allocating the
47 // class A : public RefCounted<A>;
48 // class B : public A, public RefCounted<B>;
52 // class A : public I, public RefCounted<A>; // A specific implementation
53 // class B : public I, public RefCounted<B>; // B specific implementation
119 class RefCounted : virtual public RefCount { class in namespace:sfntly
121 RefCounted() : ref_count_(0) { function in class:sfntly::RefCounted
128 RefCounted(cons argument
136 operator =(const RefCounted<TDerived>&) argument
[all...]
/external/libchrome/base/memory/
H A Dref_counted.h40 DCHECK(in_dtor_) << "RefCounted object deleted without calling Release()";
111 // knock-off of WebKit's RefCounted<T> class. To use this guy just extend your
114 // class MyFoo : public base::RefCounted<MyFoo> {
117 // friend class base::RefCounted<MyFoo>;
124 class RefCounted : public subtle::RefCountedBase { class in namespace:base
126 RefCounted() {} function in class:base::RefCounted
139 ~RefCounted() {}
142 DISALLOW_COPY_AND_ASSIGN(RefCounted<T>);
162 // A thread-safe variant of RefCounted<T>
224 // class MyFoo : public RefCounted<MyFo
[all...]
/external/libweave/third_party/chromium/base/memory/
H A Dref_counted.h37 DCHECK(in_dtor_) << "RefCounted object deleted without calling Release()";
98 // knock-off of WebKit's RefCounted<T> class. To use this guy just extend your
101 // class MyFoo : public base::RefCounted<MyFoo> {
104 // friend class base::RefCounted<MyFoo>;
111 class RefCounted : public subtle::RefCountedBase { class in namespace:base
113 RefCounted() {} function in class:base::RefCounted
126 ~RefCounted() {}
129 DISALLOW_COPY_AND_ASSIGN(RefCounted<T>);
149 // A thread-safe variant of RefCounted<T>
211 // class MyFoo : public RefCounted<MyFo
[all...]

Completed in 87 milliseconds