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

  /external/chromium_org/content/browser/indexed_db/
list_set_unittest.cc 189 class RefCounted : public base::RefCounted<RefCounted<T> > {
191 explicit RefCounted(const T& value) : value_(value) {}
195 virtual ~RefCounted() {}
196 friend class base::RefCounted<RefCounted<T> >;
201 list_set<scoped_refptr<RefCounted<int> > > set;
204 list_set<scoped_refptr<RefCounted<int> > >::iterator it = set.begin();
208 scoped_refptr<RefCounted<int> > r0(new RefCounted<int>(0))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
RefCounted.h 40 // The RefCounted class inherits from it reducing the template bloat
164 template<typename T> class RefCounted : public RefCountedBase {
165 WTF_MAKE_NONCOPYABLE(RefCounted);
177 RefCounted()
182 ~RefCounted()
187 RefCounted()
195 using WTF::RefCounted;
  /external/chromium_org/third_party/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/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/chromium_org/base/memory/
ref_counted.h 43 DCHECK(in_dtor_) << "RefCounted object deleted without calling Release()";
114 // knock-off of WebKit's RefCounted<T> class. To use this guy just extend your
117 // class MyFoo : public base::RefCounted<MyFoo> {
120 // friend class base::RefCounted<MyFoo>;
127 class RefCounted : public subtle::RefCountedBase {
129 RefCounted() {}
142 ~RefCounted() {}
145 DISALLOW_COPY_AND_ASSIGN(RefCounted<T>);
165 // A thread-safe variant of RefCounted<T>
227 // class MyFoo : public RefCounted<MyFoo>
    [all...]
  /external/chromium_org/tools/clang/plugins/tests/
base_refcounted.h 11 class RefCounted {
13 RefCounted() {}
15 ~RefCounted() {}
28 // Ignore classes whose inheritance tree ends in WebKit's RefCounted base
34 class RefCounted {
36 RefCounted() {}
37 ~RefCounted() {}
44 : public base::RefCounted<PublicRefCountedDtorInHeader> {
50 friend class base::RefCounted<PublicRefCountedDtorInHeader>;
68 : public base::RefCounted<ProtectedRefCountedDtorInHeader>
    [all...]
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/heap/
stubs.h 20 template<typename T> class RefCounted { };
  /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 128 milliseconds