HomeSort by relevance Sort by last modified time
    Searched refs:hashTableDeletedValue (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/JavaScriptCore/heap/
Strong.h 81 enum HashTableDeletedValueTag { HashTableDeletedValue };
82 bool isHashTableDeletedValue() const { return slot() == hashTableDeletedValue(); }
84 : Handle<T>(hashTableDeletedValue())
136 static HandleSlot hashTableDeletedValue() { return reinterpret_cast<HandleSlot>(-1); }
Weak.h 72 enum HashTableDeletedValueTag { HashTableDeletedValue };
73 bool isHashTableDeletedValue() const { return slot() == hashTableDeletedValue(); }
75 : Handle<T>(hashTableDeletedValue())
126 static HandleSlot hashTableDeletedValue() { return reinterpret_cast<HandleSlot>(-1); }
  /external/webkit/Source/WebCore/dom/
QualifiedName.h 62 QualifiedName(WTF::HashTableDeletedValueType) : m_impl(hashTableDeletedValue()) { }
63 bool isHashTableDeletedValue() const { return m_impl == hashTableDeletedValue(); }
99 static QualifiedNameImpl* hashTableDeletedValue() { return RefPtr<QualifiedNameImpl>::hashTableDeletedValue(); }
Document.h 169 FormElementKey(WTF::HashTableDeletedValueType) : m_name(hashTableDeletedValue()) { }
170 bool isHashTableDeletedValue() const { return m_name == hashTableDeletedValue(); }
176 static AtomicStringImpl* hashTableDeletedValue() { return reinterpret_cast<AtomicStringImpl*>(-1); }
194 static void constructDeletedValue(FormElementKey& slot) { new (&slot) FormElementKey(WTF::HashTableDeletedValue); }
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
RefPtr.h 37 enum HashTableDeletedValueType { HashTableDeletedValue };
55 RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
56 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
87 static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); }
RetainPtr.h 69 RetainPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
70 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
106 static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); }
  /external/webkit/Source/JavaScriptCore/wtf/gobject/
GRefPtr.h 91 GRefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
92 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
112 static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); }
  /external/webkit/Source/WebCore/platform/win/
COMPtr.h 63 COMPtr(WTF::HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
64 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
102 static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); }
226 static void constructDeletedValue(COMPtr<P>& slot) { new (&slot) COMPtr<P>(HashTableDeletedValue); }
  /external/webkit/Source/WebCore/bindings/v8/
npruntime.cpp 52 explicit StringKey(WTF::HashTableDeletedValueType) : m_string(hashTableDeletedValue()), m_length(0) { }
63 return m_string == hashTableDeletedValue();
70 const char* hashTableDeletedValue() const
126 new (&slot) StringKey(WTF::HashTableDeletedValue);

Completed in 141 milliseconds