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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderWidget.h 41 void ref() { ++m_refCount; }
64 int m_refCount;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.h 121 unsigned m_refCount;
CSSRuleList.h 67 virtual void ref() OVERRIDE { ++m_refCount; }
86 unsigned m_refCount;
PropertySetCSSStyleDeclaration.h 128 unsigned m_refCount;
  /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/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/platform/heap/
Heap.h     [all...]
  /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...]

Completed in 1706 milliseconds