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 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...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSRuleList.cpp 38 : m_refCount(1)
48 ASSERT(m_refCount);
49 if (!--m_refCount)
CSSRuleList.h 55 virtual void ref() { ++m_refCount; }
70 unsigned m_refCount;
PropertySetCSSStyleDeclaration.cpp 352 , m_refCount(1)
365 ++m_refCount;
370 ASSERT(m_refCount);
371 if (!--m_refCount)
CSSComputedStyleDeclaration.h 128 unsigned m_refCount;
PropertySetCSSStyleDeclaration.h 117 unsigned m_refCount;
CSSComputedStyleDeclaration.cpp     [all...]
  /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;
  /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;
RenderWidget.cpp 90 , m_refCount(1)
119 ASSERT(m_refCount <= 0);
318 if (--m_refCount <= 0)
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringImpl.h 122 : m_refCount(s_refCountFlagIsStaticString)
138 : m_refCount(s_refCountIncrement)
149 : m_refCount(s_refCountIncrement)
161 : m_refCount(s_refCountFlagIsStaticString)
218 bool isStatic() const { return m_refCount & s_refCountFlagIsStaticString; }
259 return m_refCount == s_refCountIncrement;
264 m_refCount += s_refCountIncrement;
269 if (m_refCount == s_refCountIncrement) {
274 m_refCount -= s_refCountIncrement;
444 unsigned m_refCount;
    [all...]

Completed in 193 milliseconds