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

12345

/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSRuleList.cpp39 : m_refCount(1)
49 ASSERT(m_refCount);
50 if (!--m_refCount)
/macosx-10.10/WTF-7600.1.24/wtf/
H A DDeferrableRefCounted.h48 m_refCount += normalIncrement;
58 return m_refCount / normalIncrement;
63 return !!(m_refCount & deferredFlag);
68 : m_refCount(normalIncrement)
78 m_refCount -= normalIncrement;
79 return !m_refCount;
85 m_refCount |= deferredFlag;
88 m_refCount &= ~deferredFlag;
89 return !m_refCount;
93 unsigned m_refCount; member in class:WTF::DeferrableRefCountedBase
[all...]
H A DThreadSafeRefCounted.h73 : m_refCount(initialRefCount)
79 ++m_refCount;
89 return m_refCount;
96 if (--m_refCount <= 0) {
104 std::atomic<int> m_refCount; member in class:WTF::ThreadSafeRefCountedBase
H A DRefCounted.h47 ++m_refCount;
55 return m_refCount == 1;
60 return m_refCount;
74 : m_refCount(1)
98 ASSERT(m_refCount);
99 unsigned tempRefCount = m_refCount - 1;
106 m_refCount = tempRefCount;
123 unsigned m_refCount; member in class:WTF::RefCountedBase
/macosx-10.10/JavaScriptCore-7600.1.17/bytecompiler/
H A DLabel.h45 : m_refCount(0)
62 void ref() { ++m_refCount; }
65 --m_refCount;
66 ASSERT(m_refCount >= 0);
68 int refCount() const { return m_refCount; }
83 int m_refCount; member in class:JSC::Label
H A DRegisterID.h43 : m_refCount(0)
52 : m_refCount(0)
62 : m_refCount(0)
73 ASSERT(!m_refCount);
104 ++m_refCount;
109 --m_refCount;
110 ASSERT(m_refCount >= 0);
115 return m_refCount;
120 int m_refCount; member in class:JSC::RegisterID
H A DLabelScope.h44 : m_refCount(0)
52 int refCount() const { return m_refCount; }
64 void ref() { ++m_refCount; }
67 --m_refCount;
68 ASSERT(m_refCount >= 0);
71 int m_refCount; member in class:JSC::LabelScope
/macosx-10.10/WebKit-7600.1.25/win/WebCoreSupport/
H A DWebInspectorDelegate.cpp34 :m_refCount(0)
47 return ++m_refCount;
52 ULONG newRef = --m_refCount;
/macosx-10.10/JavaScriptCore-7600.1.17/jit/
H A DJITStubRoutine.cpp46 RELEASE_ASSERT(!m_refCount);
H A DJITStubRoutine.h57 , m_refCount(1)
88 m_refCount++;
93 if (--m_refCount)
150 unsigned m_refCount; member in class:JSC::JITStubRoutine
/macosx-10.10/WebCore-7600.1.25/platform/
H A DTreeShared.h39 : m_refCount(1)
54 ASSERT(!m_refCount);
66 ++m_refCount;
72 ASSERT(m_refCount >= 0);
77 if (--m_refCount <= 0 && !thisNode->hasTreeSharedParent()) {
89 return m_refCount == 1;
94 return m_refCount;
107 int m_refCount; member in class:WebCore::TreeShared
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebCookieManager.cpp40 : m_refCount(0)
70 return ++m_refCount;
75 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;
90 : 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.cpp40 : m_refCount(0)
70 return ++m_refCount;
75 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;
/macosx-10.10/bmalloc-7600.1.17/bmalloc/
H A DLine.h50 unsigned refCount(std::lock_guard<StaticMutex>&) { return m_refCount; }
56 unsigned char m_refCount; member in class:bmalloc::Line
86 BASSERT(!m_refCount); // Up-ref from zero can be lock-free because there are no other clients.
88 m_refCount = count;
94 BASSERT(count <= m_refCount);
95 m_refCount -= count;
96 return !m_refCount;
H A DPage.h50 unsigned refCount(std::lock_guard<StaticMutex>&) { return m_refCount; }
59 unsigned char m_refCount; member in class:bmalloc::Page
66 BASSERT(m_refCount < maxRefCount);
67 ++m_refCount;
73 BASSERT(m_refCount);
74 --m_refCount;
75 return !m_refCount;
/macosx-10.10/WebCore-7600.1.25/dom/
H A DSpaceSplitString.h61 ASSERT(m_refCount);
62 ++m_refCount;
68 ASSERT(m_refCount);
69 unsigned tempRefCount = m_refCount - 1;
74 m_refCount = tempRefCount;
83 , m_refCount(1)
96 unsigned m_refCount;

Completed in 191 milliseconds

12345