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

1 2 3 4 5 6

  /external/webkit/JavaScriptCore/wtf/
RefCounted.h 37 ++m_refCount;
43 return m_refCount == 1;
48 return m_refCount;
53 : m_refCount(1)
68 ASSERT(m_refCount > 0);
69 if (m_refCount == 1) {
76 --m_refCount;
83 return &m_refCount;
97 int m_refCount;
  /external/webkit/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/WebKit/win/WebCoreSupport/
WebInspectorDelegate.cpp 33 :m_refCount(0)
46 return ++m_refCount;
51 ULONG newRef = --m_refCount;
  /external/webkit/WebCore/platform/
TreeShared.h 35 : m_refCount(initialRefCount)
47 ASSERT(!m_refCount);
56 ++m_refCount;
62 ASSERT(m_refCount >= 0);
65 if (--m_refCount <= 0 && !m_parent) {
77 return m_refCount == 1;
82 return m_refCount;
111 int m_refCount;
  /external/webkit/WebKit/win/
GEN_DOMObject.cpp 39 : m_refCount(0)
69 return ++m_refCount;
74 ULONG newRef = --m_refCount;
GEN_DOMObject.h 45 ULONG m_refCount;
WebCookieManager.cpp 42 : m_refCount(0)
72 return ++m_refCount;
77 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;
WebIconFetcher.h 48 ULONG m_refCount;
WebJavaScriptCollector.h 55 ULONG m_refCount;
WebKitClassFactory.h 45 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 44 : m_refCount(0)
81 return ++m_refCount;
86 ULONG newRef = --m_refCount;
WebScriptObject.cpp 36 : m_refCount(0)
66 return ++m_refCount;
71 ULONG newRef = --m_refCount;
WebSerializedJSValue.cpp 34 : m_refCount(0)
53 return ++m_refCount;
58 ULONG newRefCount = --m_refCount;
WebTextRenderer.cpp 48 : m_refCount(0)
76 return ++m_refCount;
81 ULONG newRef = --m_refCount;
  /external/webkit/WebCore/bridge/jni/v8/
JavaInstanceV8.h 53 void ref() { m_refCount++; }
56 if (!(--m_refCount))
68 unsigned int m_refCount;
  /external/webkit/WebCore/bridge/jni/jsc/
JavaInstanceJSC.h 53 void ref() { m_refCount++; }
56 if (!(--m_refCount))
68 unsigned int m_refCount;

Completed in 157 milliseconds

1 2 3 4 5 6