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

  /external/chromium_org/third_party/WebKit/Source/wtf/
RefCounted.h 42 class WTF_EXPORT RefCountedBase {
83 RefCountedBase()
94 ~RefCountedBase()
139 friend void adopted(RefCountedBase*);
153 inline void adopted(RefCountedBase* object)
164 template<typename T> class RefCounted : public RefCountedBase {
  /external/chromium_org/base/memory/
ref_counted.h 28 class BASE_EXPORT RefCountedBase {
33 RefCountedBase()
41 ~RefCountedBase() {
85 DISALLOW_COPY_AND_ASSIGN(RefCountedBase);
127 class RefCounted : public subtle::RefCountedBase {
132 subtle::RefCountedBase::AddRef();
136 if (subtle::RefCountedBase::Release()) {
  /external/llvm/include/llvm/ADT/
IntrusiveRefCntPtr.h 12 // internal reference count, and RefCountedBase/RefCountedBaseVPTR, two
35 /// RefCountedBase - A generic base class for objects that wish to
37 /// subclass RefCountedBase to obtain such functionality, and are
40 /// Objects that subclass RefCountedBase should not be allocated on
45 class RefCountedBase {
49 RefCountedBase() : ref_cnt(0) {}
50 RefCountedBase(const RefCountedBase &) : ref_cnt(0) {}
61 /// RefCountedBase, but with a virtual destructor. Should be used
62 /// instead of RefCountedBase for classes that already have virtua
    [all...]

Completed in 734 milliseconds