OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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) {}
59
///
RefCountedBase
, but with a virtual destructor. Should be used
60
/// instead of
RefCountedBase
for classes that already have virtual
96
///
RefCountedBase
/RefCountedBaseVPTR takes care of this
Completed in 2738 milliseconds