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/css/
CSSComputedStyleDeclaration.h 128 unsigned m_refCount;
CSSRuleList.h 55 virtual void ref() { ++m_refCount; }
70 unsigned m_refCount;
PropertySetCSSStyleDeclaration.h 117 unsigned m_refCount;
  /external/chromium_org/third_party/WebKit/Source/core/platform/
TreeShared.h 39 : m_refCount(1)
52 ASSERT(!m_refCount);
64 ++m_refCount;
70 ASSERT(m_refCount >= 0);
75 if (--m_refCount <= 0 && !thisNode->hasTreeSharedParent()) {
87 return m_refCount == 1;
92 return m_refCount;
96 int m_refCount;
  /external/chromium_org/third_party/WebKit/Source/wtf/
ThreadSafeRefCounted.h 47 : m_refCount(initialRefCount)
53 atomicIncrement(&m_refCount);
63 return static_cast<int const volatile &>(m_refCount);
70 WTF_ANNOTATE_HAPPENS_BEFORE(&m_refCount);
71 if (atomicDecrement(&m_refCount) <= 0) {
72 WTF_ANNOTATE_HAPPENS_AFTER(&m_refCount);
79 int m_refCount;
RefCounted.h 54 if (m_refCount == 1)
63 ++m_refCount;
72 return m_refCount == 1;
80 return m_refCount;
94 : m_refCount(1)
119 ASSERT(m_refCount > 0);
120 if (m_refCount == 1) {
127 --m_refCount;
131 if (m_refCount == 1)
150 int m_refCount;
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglGlobalInfo.cpp 21 int EglGlobalInfo::m_refCount = 0;
37 m_refCount = 0;
39 m_refCount++;
44 m_refCount--;
45 if(m_refCount <= 0 && m_singleton) {
EglGlobalInfo.h 55 static int m_refCount;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderWidget.h 71 void ref() { ++m_refCount; }
101 int m_refCount;

Completed in 104 milliseconds