Home
last modified time | relevance | path

Searched refs:hashTableDeletedValue (Results 1 – 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/dom/
DQualifiedName.h62 QualifiedName(WTF::HashTableDeletedValueType) : m_impl(hashTableDeletedValue()) { } in QualifiedName()
63 bool isHashTableDeletedValue() const { return m_impl == hashTableDeletedValue(); } in isHashTableDeletedValue()
99 …static QualifiedNameImpl* hashTableDeletedValue() { return RefPtr<QualifiedNameImpl>::hashTableDel… in hashTableDeletedValue() function
DDocument.h169 FormElementKey(WTF::HashTableDeletedValueType) : m_name(hashTableDeletedValue()) { } in FormElementKey()
170 bool isHashTableDeletedValue() const { return m_name == hashTableDeletedValue(); } in isHashTableDeletedValue()
176 …static AtomicStringImpl* hashTableDeletedValue() { return reinterpret_cast<AtomicStringImpl*>(-1);… in hashTableDeletedValue() function
/external/webkit/Source/JavaScriptCore/heap/
DStrong.h82 bool isHashTableDeletedValue() const { return slot() == hashTableDeletedValue(); } in isHashTableDeletedValue()
84 : Handle<T>(hashTableDeletedValue()) in Strong()
136 static HandleSlot hashTableDeletedValue() { return reinterpret_cast<HandleSlot>(-1); } in hashTableDeletedValue() function
DWeak.h73 bool isHashTableDeletedValue() const { return slot() == hashTableDeletedValue(); } in isHashTableDeletedValue()
75 : Handle<T>(hashTableDeletedValue()) in Weak()
126 static HandleSlot hashTableDeletedValue() { return reinterpret_cast<HandleSlot>(-1); } in hashTableDeletedValue() function
/external/webkit/Source/JavaScriptCore/wtf/gobject/
DGRefPtr.h91 GRefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { } in GRefPtr()
92 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); } in isHashTableDeletedValue()
112 static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); } in hashTableDeletedValue() function
/external/webkit/Source/WebCore/platform/win/
DCOMPtr.h63 COMPtr(WTF::HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { } in COMPtr()
64 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); } in isHashTableDeletedValue()
102 static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); } in hashTableDeletedValue() function
/external/webkit/Source/JavaScriptCore/wtf/
DRefPtr.h55 RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { } in RefPtr()
56 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); } in isHashTableDeletedValue()
87 static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); } in hashTableDeletedValue() function
DRetainPtr.h69 RetainPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { } in RetainPtr()
70 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); } in isHashTableDeletedValue()
106 static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); } in hashTableDeletedValue() function
/external/webkit/Source/WebCore/bindings/v8/
Dnpruntime.cpp52 …explicit StringKey(WTF::HashTableDeletedValueType) : m_string(hashTableDeletedValue()), m_length(0… in StringKey()
63 return m_string == hashTableDeletedValue(); in isHashTableDeletedValue()
70 const char* hashTableDeletedValue() const in hashTableDeletedValue() function in npruntime::StringKey
/external/webkit/Source/JavaScriptCore/
DChangeLog1311 (JSC::Weak::hashTableDeletedValue): Ditto.
1870 (JSC::Global::hashTableDeletedValue): Reordered constructors to be near
DChangeLog-2011-02-166711 (WTF::GRefPtr::hashTableDeletedValue): Ditto.
11421 Make PlatformRefPtr aware of hashTableDeletedValue. When PlatformRefPtr
15618 (WTF::PlatformRefPtr::hashTableDeletedValue): Ditto.
22363 (WTF::RetainPtr::hashTableDeletedValue):
DChangeLog-2010-05-2412570 (WTF::GRefPtr::hashTableDeletedValue):
/external/webkit/Source/WebCore/
DChangeLog-2008-08-1020589 (WebCore::FormElementKey::hashTableDeletedValue): GCC complained about the const keyword
24841 constructor and isHashTableDeletedValue and hashTableDeletedValue
26077 (COMPtr::hashTableDeletedValue): Added.