Searched refs:refCount (Results 1 - 25 of 61) sorted by relevance

123

/external/webkit/JavaScriptCore/API/tests/
H A DNodeList.h32 unsigned refCount; member in struct:__anon6417
H A DNodeList.c36 nodeList->refCount = 0;
72 ++nodeList->refCount;
77 if (--nodeList->refCount == 0) {
H A DNode.h38 unsigned refCount; member in struct:__Node
H A DNode.c33 node->refCount = 0;
78 ++node->refCount;
83 if (--node->refCount == 0)
/external/chromium/third_party/icu/source/test/threadtest/
H A Dstringtest.cpp128 uint32_t refCount = fSourceStrings[i].refCount(); local
129 if (refCount != 1) {
130 fprintf(stderr, "\nFailure. SourceString Ref Count was %d, should be 1.\n", refCount);
/external/icu4c/test/threadtest/
H A Dstringtest.cpp128 uint32_t refCount = fSourceStrings[i].refCount(); local
129 if (refCount != 1) {
130 fprintf(stderr, "\nFailure. SourceString Ref Count was %d, should be 1.\n", refCount);
/external/webkit/JavaScriptCore/runtime/
H A DScopeChain.h42 , refCount(1)
66 int refCount; member in class:JSC::ScopeChainNode
68 void deref() { ASSERT(refCount); if (--refCount == 0) { release();} }
69 void ref() { ASSERT(refCount); ++refCount; }
105 if (--refCount != 0)
106 ++result->refCount;
117 ASSERT(refCount == 0);
123 } while (n && --n->refCount
[all...]
/external/webkit/WebCore/platform/graphics/qt/
H A DFontPlatformDataQt.cpp46 ++m_data->refCount;
70 --m_data->refCount;
71 if (!m_data->refCount)
80 --m_data->refCount;
81 if (!m_data->refCount)
86 ++m_data->refCount;
H A DFontPlatformData.h37 : refCount(1)
43 : refCount(1)
49 : refCount(1)
55 unsigned refCount; member in class:WebCore::FontPlatformDataPrivate
/external/webkit/WebCore/storage/
H A DOriginUsageRecord.cpp45 ASSERT_ARG(identifier, identifier.impl()->refCount() == 1);
46 ASSERT_ARG(fullPath, fullPath.impl()->refCount() == 1);
66 ASSERT_ARG(identifier, identifier.impl()->refCount() == 1);
H A DStorageMap.cpp109 if (refCount() > 1) {
149 if (refCount() > 1) {
H A DDatabaseThread.cpp106 LOG(StorageAPI, "About to detach thread %i and clear the ref to DatabaseThread %p, which currently has %i ref(s)", m_threadID, this, refCount());
/external/webkit/JavaScriptCore/bytecompiler/
H A DLabelScope.h59 int refCount() const { return m_refCount; } function in class:JSC::LabelScope
H A DRegisterID.h95 int refCount() const function in class:JSC::RegisterID
H A DLabel.h73 int refCount() const { return m_refCount; } function in class:JSC::Label
H A DBytecodeGenerator.cpp514 while (m_calleeRegisters.size() && !m_calleeRegisters.last().refCount())
533 while (m_labelScopes.size() && !m_labelScopes.last().refCount())
545 while (m_labels.size() && !m_labels.last().refCount())
626 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) {
643 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) {
659 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) {
674 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) {
702 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) {
719 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) {
735 if (cond->index() == dstIndex && cond->isTemporary() && !cond->refCount()) {
[all...]
/external/webkit/JavaScriptCore/wtf/
H A DCrossThreadRefCounted.h114 if (!m_threadId && m_refCounter.refCount() == 2)
130 if (m_threadId && m_refCounter.refCount() == 1)
H A DThreading.h269 return refCount() == 1;
272 int refCount() const function in class:WTF::ThreadSafeSharedBase
288 int refCount;
292 refCount = m_refCount;
294 if (refCount <= 0)
H A DRefCounted.h46 int refCount() const function in class:WTF::RefCountedBase
/external/nist-sip/java/gov/nist/javax/sip/
H A DEventScanner.java50 private int refCount; field in class:EventScanner
61 this.refCount++;
102 if (this.refCount > 0)
103 this.refCount--;
105 if (this.refCount == 0) {
121 this.refCount = 0;
/external/chromium/third_party/icu/source/common/
H A Dsprpimpl.h92 int32_t refCount; member in struct:UStringPrepProfile
/external/icu4c/common/
H A Dsprpimpl.h92 int32_t refCount; member in struct:UStringPrepProfile
/external/webkit/WebCore/platform/
H A DTreeShared.h80 int refCount() const function in class:WebCore::TreeShared
/external/webkit/JavaScriptCore/API/
H A DJSContextRef.cpp128 if (globalData.refCount() == 2) { // One reference is held by JSGlobalObject, another added by JSGlobalContextRetain().
/external/webkit/WebCore/dom/
H A DContainerNodeAlgorithms.h126 if (!n->refCount()) {

Completed in 1528 milliseconds

123