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

  /external/chromium/base/memory/
ref_counted.cc 14 RefCountedBase::RefCountedBase()
22 RefCountedBase::~RefCountedBase() {
28 void RefCountedBase::AddRef() const {
38 bool RefCountedBase::Release() const {
ref_counted.h 17 class BASE_API RefCountedBase {
24 RefCountedBase();
25 ~RefCountedBase();
40 DISALLOW_COPY_AND_ASSIGN(RefCountedBase);
84 class RefCounted : public subtle::RefCountedBase {
90 subtle::RefCountedBase::AddRef();
94 if (subtle::RefCountedBase::Release()) {
  /external/webkit/Source/JavaScriptCore/wtf/
RefCounted.h 33 class RefCountedBase {
69 RefCountedBase()
78 ~RefCountedBase()
113 friend void adopted(RefCountedBase*);
125 inline void adopted(RefCountedBase* object)
135 template<typename T> class RefCounted : public RefCountedBase {
151 template<typename T> class RefCountedCustomAllocated : public RefCountedBase {
  /external/llvm/include/llvm/ADT/
IntrusiveRefCntPtr.h 12 // internal reference count, and RefCountedBase/RefCountedBaseVPTR, two
34 /// RefCountedBase - A generic base class for objects that wish to
36 /// subclass RefCountedBase to obtain such functionality, and are
39 /// Objects that subclass RefCountedBase should not be allocated on
44 class RefCountedBase {
48 RefCountedBase() : ref_cnt(0) {}
49 RefCountedBase(const RefCountedBase &) : ref_cnt(0) {}
60 /// RefCountedBase, but with a virtual destructor. Should be used
61 /// instead of RefCountedBase for classes that already have virtua
    [all...]

Completed in 607 milliseconds