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

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DThreadSafeRefCounted.h46 : m_refCount(initialRefCount)
52 atomicIncrement(&m_refCount);
62 return static_cast<int const volatile &>(m_refCount);
69 WTF_ANNOTATE_HAPPENS_BEFORE(&m_refCount);
70 if (atomicDecrement(&m_refCount) <= 0) {
71 WTF_ANNOTATE_HAPPENS_AFTER(&m_refCount);
78 int m_refCount; member in class:WTF::ThreadSafeRefCountedBase
H A DRefCounted.h53 if (m_refCount == 1)
62 ++m_refCount;
71 return m_refCount == 1;
79 return m_refCount;
84 : m_refCount(1)
111 ASSERT(m_refCount > 0);
112 --m_refCount;
113 if (!m_refCount) {
123 if (m_refCount == 1)
142 int m_refCount; member in class:WTF::RefCountedBase
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSRuleList.cpp35 : m_refCount(1)
47 ASSERT(m_refCount);
48 if (!--m_refCount)
H A DCSSRuleList.h67 virtual void ref() OVERRIDE { ++m_refCount; }
86 unsigned m_refCount; member in class:blink::FINAL
H A DPropertySetCSSStyleDeclaration.cpp316 , m_refCount(1)
335 ++m_refCount;
340 ASSERT(m_refCount);
341 if (!--m_refCount)
H A DCSSComputedStyleDeclaration.h121 unsigned m_refCount; member in class:blink::FINAL
H A DPropertySetCSSStyleDeclaration.h128 unsigned m_refCount; member in class:blink::FINAL
H A DCSSComputedStyleDeclaration.cpp1130 , m_refCount(1)
1145 ++m_refCount;
1150 ASSERT(m_refCount);
1151 if (!--m_refCount)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DTreeShared.h40 : m_refCount(1)
55 ASSERT(!m_refCount);
67 ++m_refCount;
73 ASSERT(m_refCount > 0);
78 if (!--m_refCount && !thisNode->hasTreeSharedParent()) {
86 int refCount() const { return m_refCount; }
89 int m_refCount; member in class:blink::TreeShared
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderWidget.h41 void ref() { ++m_refCount; }
64 int m_refCount; member in class:blink::RenderWidget
H A DRenderWidget.cpp48 , m_refCount(1)
91 ASSERT(m_refCount <= 0);
253 if (--m_refCount <= 0)
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImpl.h130 : m_refCount(1)
146 : m_refCount(1)
160 : m_refCount(1)
172 : m_refCount(1)
185 : m_refCount(1)
288 return m_refCount == 1;
293 ++m_refCount;
303 --m_refCount;
453 unsigned m_refCount;
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.hpp60 int getRefCount (void) const { return m_refCount; }
61 void incRefCount (void) { m_refCount += 1; }
62 void decRefCount (void) { DE_ASSERT(m_refCount > 0); m_refCount -= 1; }
65 NamedObject (deUint32 name) : m_name(name), m_refCount(1) {}
69 int m_refCount; member in class:sglr::rc::NamedObject
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeap.h1235 : m_refCount(1)
1256 if (UNLIKELY(!m_refCount)) {
1260 ++m_refCount;
1273 ASSERT(m_refCount > 0);
1274 if (!--m_refCount) {
1282 return m_refCount == 1;
1295 int m_refCount; member in class:blink::RefCountedGarbageCollected

Completed in 886 milliseconds