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

  /external/sfntly/cpp/src/sfntly/port/
refcount.h 22 // 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
123 class RefCounted : virtual public RefCount {
125 RefCounted() : ref_count_(0) {
132 RefCounted(const RefCounted<TDerived>&) : ref_count_(0) {
    [all...]
  /external/libchrome/base/memory/
ref_counted.h 40 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 {
126 RefCounted() {}
139 ~RefCounted() {}
142 DISALLOW_COPY_AND_ASSIGN(RefCounted<T>);
162 // A thread-safe variant of RefCounted<T>
224 // class MyFoo : public RefCounted<MyFoo>
    [all...]
  /external/libweave/third_party/chromium/base/memory/
ref_counted.h 37 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 {
113 RefCounted() {}
126 ~RefCounted() {}
129 DISALLOW_COPY_AND_ASSIGN(RefCounted<T>);
149 // A thread-safe variant of RefCounted<T>
211 // class MyFoo : public RefCounted<MyFoo>
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
unroll1.cpp 172 class RefCounted
175 RefCounted() : count_m(0) {}
187 class RefBlockController : public RefCounted
  /ndk/tests/device/test-stlport_static-exception/jni/
unroll1.cpp 172 class RefCounted
175 RefCounted() : count_m(0) {}
187 class RefBlockController : public RefCounted

Completed in 121 milliseconds