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

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DRefCounted.h42 class WTF_EXPORT RefCountedBase { class in namespace:WTF
83 RefCountedBase() function in class:WTF::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/
H A Dref_counted.h22 class BASE_EXPORT RefCountedBase { class in namespace:base::subtle
27 RefCountedBase() function in class:base::subtle::RefCountedBase
35 ~RefCountedBase() {
79 DISALLOW_COPY_AND_ASSIGN(RefCountedBase);
121 class RefCounted : public subtle::RefCountedBase {
126 subtle::RefCountedBase::AddRef();
130 if (subtle::RefCountedBase::Release()) {
/external/llvm/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h12 // 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 { class in namespace:llvm
49 RefCountedBase() : ref_cnt(0) {} function in class:llvm::RefCountedBase
50 RefCountedBase(const RefCountedBase &) : ref_cnt(0) {} function in class:llvm::RefCountedBase
61 /// RefCountedBase, but with a virtual destructor. Should be used
62 /// instead of RefCountedBase fo
[all...]

Completed in 161 milliseconds