Searched defs:m_refCount (Results 1 - 9 of 9) sorted by relevance

/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
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.h121 unsigned m_refCount; member in class:blink::FINAL
H A DCSSRuleList.h67 virtual void ref() OVERRIDE { ++m_refCount; }
86 unsigned m_refCount; member in class:blink::FINAL
H A DPropertySetCSSStyleDeclaration.h128 unsigned m_refCount; member in class:blink::FINAL
/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/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/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
/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

Completed in 223 milliseconds