HomeSort by relevance Sort by last modified time
    Searched refs:m_refCount (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadSafeRefCounted.h 46 : 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;
RefCounted.h 53 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;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSRuleList.cpp 35 : m_refCount(1)
47 ASSERT(m_refCount);
48 if (!--m_refCount)
CSSRuleList.h 67 virtual void ref() OVERRIDE { ++m_refCount; }
86 unsigned m_refCount;
PropertySetCSSStyleDeclaration.cpp 316 , m_refCount(1)
335 ++m_refCount;
340 ASSERT(m_refCount);
341 if (!--m_refCount)
CSSComputedStyleDeclaration.h 121 unsigned m_refCount;
PropertySetCSSStyleDeclaration.h 128 unsigned m_refCount;
CSSComputedStyleDeclaration.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeShared.h 40 : 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;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderWidget.h 41 void ref() { ++m_refCount; }
64 int m_refCount;
RenderWidget.cpp 48 , m_refCount(1)
91 ASSERT(m_refCount <= 0);
253 if (--m_refCount <= 0)
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.h 130 : 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/
sglrReferenceContext.hpp 60 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;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Heap.h     [all...]

Completed in 394 milliseconds