Searched refs:m_refCount (Results 1 - 25 of 131) sorted by relevance

123456

/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DRegisterID.h41 : m_refCount(0)
50 : m_refCount(0)
61 ASSERT(!m_refCount);
86 ++m_refCount;
91 --m_refCount;
92 ASSERT(m_refCount >= 0);
97 return m_refCount;
102 int m_refCount; member in class:JSC::RegisterID
H A DLabelScope.h44 : m_refCount(0)
53 void ref() { ++m_refCount; }
56 --m_refCount;
57 ASSERT(m_refCount >= 0);
59 int refCount() const { return m_refCount; }
69 int m_refCount; member in class:JSC::LabelScope
H A DLabel.h43 : m_refCount(0)
67 void ref() { ++m_refCount; }
70 --m_refCount;
71 ASSERT(m_refCount >= 0);
73 int refCount() const { return m_refCount; }
82 int m_refCount; member in class:JSC::Label
/external/webkit/Source/JavaScriptCore/wtf/
H A DThreadSafeRefCounted.h75 : m_refCount(initialRefCount)
82 atomicIncrement(&m_refCount);
85 ++m_refCount;
99 return static_cast<int const volatile &>(m_refCount);
107 WTF_ANNOTATE_HAPPENS_BEFORE(&m_refCount);
108 if (atomicDecrement(&m_refCount) <= 0) {
109 WTF_ANNOTATE_HAPPENS_AFTER(&m_refCount);
116 --m_refCount;
117 refCount = m_refCount;
129 int m_refCount; member in class:WTF::ThreadSafeRefCountedBase
[all...]
H A DRefCounted.h39 ++m_refCount;
45 return m_refCount == 1;
50 return m_refCount;
65 return &m_refCount;
70 : m_refCount(1)
90 ASSERT(m_refCount > 0);
91 if (m_refCount == 1) {
98 --m_refCount;
116 int m_refCount; member in class:WTF::RefCountedBase
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebInspectorDelegate.cpp33 :m_refCount(0)
46 return ++m_refCount;
51 ULONG newRef = --m_refCount;
/external/webkit/Source/WebCore/bridge/jni/
H A DJobjectWrapper.h49 void ref() { m_refCount++; }
52 if (!--m_refCount)
64 unsigned int m_refCount; member in class:JSC::Bindings::JobjectWrapper
H A DJobjectWrapper.cpp37 : m_refCount(0)
/external/webkit/Source/WebCore/platform/
H A DTreeShared.h39 : m_refCount(1)
54 ASSERT(!m_refCount);
65 ++m_refCount;
71 ASSERT(m_refCount >= 0);
75 if (--m_refCount <= 0 && !m_parent) {
87 return m_refCount == 1;
92 return m_refCount;
126 int m_refCount; member in class:WebCore::TreeShared
/external/webkit/Source/WebKit/win/
H A DWebCookieManager.cpp42 : m_refCount(0)
72 return ++m_refCount;
77 ULONG newRef = --m_refCount;
H A DWebGeolocationPolicyListener.cpp42 : m_refCount(0)
73 return ++m_refCount;
78 ULONG newRef = --m_refCount;
H A DWebTextRenderer.cpp42 : m_refCount(0)
70 return ++m_refCount;
75 ULONG newRef = --m_refCount;
H A DWebWorkersPrivate.cpp57 return ++m_refCount;
62 ULONG newRef = --m_refCount;
94 : m_refCount(0)
H A DWebTextRenderer.h53 ULONG m_refCount; member in class:WebTextRenderer
H A DWebWorkersPrivate.h53 ULONG m_refCount; member in class:WebWorkersPrivate
H A DWebFramePolicyListener.cpp40 : m_refCount(0)
80 return ++m_refCount;
85 ULONG newRef = --m_refCount;
H A DWebGeolocationPosition.cpp42 : m_refCount(0)
72 return ++m_refCount;
77 ULONG newRef = --m_refCount;
H A DWebJavaScriptCollector.cpp42 : m_refCount(0)
79 return ++m_refCount;
84 ULONG newRef = --m_refCount;
H A DWebScriptObject.cpp36 : m_refCount(0)
66 return ++m_refCount;
71 ULONG newRef = --m_refCount;
H A DWebSerializedJSValue.cpp34 : m_refCount(0)
53 return ++m_refCount;
58 ULONG newRefCount = --m_refCount;
H A DWebURLAuthenticationChallengeSender.cpp42 : m_refCount(0)
83 return ++m_refCount;
88 ULONG newRef = --m_refCount;
H A DWebArchive.cpp54 : m_refCount(0)
83 return ++m_refCount;
88 ULONG newRef = --m_refCount;
H A DWebKitClassFactory.cpp77 , m_refCount(0)
119 return ++m_refCount;
124 ULONG newRef = --m_refCount;
H A DWebKitStatistics.cpp47 : m_refCount(0)
84 return ++m_refCount;
89 ULONG newRef = --m_refCount;
H A DWebNotification.cpp36 : m_refCount(0)
90 return ++m_refCount;
95 ULONG newRef = --m_refCount;

Completed in 1256 milliseconds

123456