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

1 2 3 4 5 6

  /external/webkit/Source/JavaScriptCore/wtf/
ThreadSafeRefCounted.h 75 : m_refCount(initialRefCount)
82 atomicIncrement(&m_refCount);
85 ++m_refCount;
99 return static_cast<int const volatile &>(m_refCount);
107 WTF_ANNOTATE_HAPPENS_BEFORE(&m_refCount);
108 if (atomicDecrement(&m_refCount) <= 0) {
109 WTF_ANNOTATE_HAPPENS_AFTER(&m_refCount);
116 --m_refCount;
117 refCount = m_refCount;
129 int m_refCount;
    [all...]
RefCounted.h 39 ++m_refCount;
45 return m_refCount == 1;
50 return m_refCount;
65 return &m_refCount;
70 : m_refCount(1)
90 ASSERT(m_refCount > 0);
91 if (m_refCount == 1) {
98 --m_refCount;
116 int m_refCount;
  /external/webkit/Source/JavaScriptCore/bytecompiler/
RegisterID.h 41 : m_refCount(0)
50 : m_refCount(0)
61 ASSERT(!m_refCount);
86 ++m_refCount;
91 --m_refCount;
92 ASSERT(m_refCount >= 0);
97 return m_refCount;
102 int m_refCount;
Label.h 43 : m_refCount(0)
67 void ref() { ++m_refCount; }
70 --m_refCount;
71 ASSERT(m_refCount >= 0);
73 int refCount() const { return m_refCount; }
82 int m_refCount;
LabelScope.h 44 : m_refCount(0)
53 void ref() { ++m_refCount; }
56 --m_refCount;
57 ASSERT(m_refCount >= 0);
59 int refCount() const { return m_refCount; }
69 int m_refCount;
  /external/webkit/Source/WebCore/bridge/jni/
JobjectWrapper.h 49 void ref() { m_refCount++; }
52 if (!--m_refCount)
64 unsigned int m_refCount;
JobjectWrapper.cpp 37 : m_refCount(0)
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebInspectorDelegate.cpp 33 :m_refCount(0)
46 return ++m_refCount;
51 ULONG newRef = --m_refCount;
  /external/webkit/Source/WebCore/platform/
TreeShared.h 39 : m_refCount(1)
54 ASSERT(!m_refCount);
65 ++m_refCount;
71 ASSERT(m_refCount >= 0);
75 if (--m_refCount <= 0 && !m_parent) {
87 return m_refCount == 1;
92 return m_refCount;
126 int m_refCount;
  /external/webkit/Source/WebKit/win/
WebCookieManager.cpp 42 : m_refCount(0)
72 return ++m_refCount;
77 ULONG newRef = --m_refCount;
WebTextRenderer.cpp 42 : m_refCount(0)
70 return ++m_refCount;
75 ULONG newRef = --m_refCount;
WebWorkersPrivate.cpp 57 return ++m_refCount;
62 ULONG newRef = --m_refCount;
94 : m_refCount(0)
WebTextRenderer.h 53 ULONG m_refCount;
WebWorkersPrivate.h 53 ULONG m_refCount;
WebCache.h 59 ULONG m_refCount;
WebCookieManager.h 57 ULONG m_refCount;
WebJavaScriptCollector.h 55 ULONG m_refCount;
WebKitClassFactory.h 47 ULONG m_refCount;
WebGeolocationPolicyListener.cpp 42 : m_refCount(0)
73 return ++m_refCount;
78 ULONG newRef = --m_refCount;
WebGeolocationPosition.cpp 42 : m_refCount(0)
72 return ++m_refCount;
77 ULONG newRef = --m_refCount;
WebJavaScriptCollector.cpp 42 : m_refCount(0)
79 return ++m_refCount;
84 ULONG newRef = --m_refCount;
WebScriptObject.cpp 36 : m_refCount(0)
66 return ++m_refCount;
71 ULONG newRef = --m_refCount;
WebURLAuthenticationChallengeSender.cpp 42 : m_refCount(0)
83 return ++m_refCount;
88 ULONG newRef = --m_refCount;
WebArchive.cpp 54 : m_refCount(0)
83 return ++m_refCount;
88 ULONG newRef = --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) {

Completed in 243 milliseconds

1 2 3 4 5 6