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

  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicStringHash.h 54 static void constructDeletedValue(WTF::AtomicString& slot) { new (&slot) WTF::AtomicString(HashTableDeletedValue); }
AtomicString.h 53 AtomicString(WTF::HashTableDeletedValueType) : m_string(WTF::HashTableDeletedValue) { }
WTFString.h 347 String(WTF::HashTableDeletedValueType) : m_impl(WTF::HashTableDeletedValue) { }
  /external/webkit/Source/JavaScriptCore/runtime/
JSValue.h 240 enum HashTableDeletedValueTag { HashTableDeletedValue };
373 static void constructDeletedValue(EncodedJSValue& slot) { slot = JSValue::encode(JSValue(JSValue::HashTableDeletedValue)); }
374 static bool isDeletedValue(EncodedJSValue value) { return value == JSValue::encode(JSValue(JSValue::HashTableDeletedValue)); }
380 static void constructDeletedValue(EncodedJSValue& slot) { slot = JSValue::encode(JSValue(JSValue::HashTableDeletedValue)); }
381 static bool isDeletedValue(EncodedJSValue value) { return value == JSValue::encode(JSValue(JSValue::HashTableDeletedValue)); }
  /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/platform/
KURL.h 80 KURL(WTF::HashTableDeletedValueType) : m_url(WTF::HashTableDeletedValue) { }
82 KURL(WTF::HashTableDeletedValueType) : m_string(WTF::HashTableDeletedValue) { }
KURLGoogle.cpp 173 : m_string(WTF::HashTableDeletedValue)
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
HashTraits.h 88 static void constructDeletedValue(T& slot) { new (&slot) T(HashTableDeletedValue); }
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); }
  /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/platform/graphics/
FontPlatformData.h 118 , m_font(WTF::HashTableDeletedValue)
FontCache.cpp 240 new (&slot) FontPlatformData(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);
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontPlatformData.cpp 171 new (&slot) FixedSizeFontDataKey(WTF::HashTableDeletedValue);
  /external/webkit/Source/WebCore/dom/
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...]

Completed in 498 milliseconds