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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
QualifiedName.h 70 QualifiedName(WTF::HashTableDeletedValueType) : m_impl(hashTableDeletedValue()) { }
71 bool isHashTableDeletedValue() const { return m_impl == hashTableDeletedValue(); }
106 static QualifiedNameImpl* hashTableDeletedValue() { return RefPtr<QualifiedNameImpl>::hashTableDeletedValue(); }
  /external/chromium_org/third_party/WebKit/Source/wtf/
RefPtr.h 47 RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
48 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
77 static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); }
RetainPtr.h 82 RetainPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
83 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
124 static PtrType hashTableDeletedValue() { return reinterpret_cast<PtrType>(-1); }
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
npruntime.cpp 53 explicit StringKey(WTF::HashTableDeletedValueType) : m_string(hashTableDeletedValue()), m_length(0) { }
64 return m_string == hashTableDeletedValue();
71 const char* hashTableDeletedValue() const
127 new (&slot) StringKey(WTF::HashTableDeletedValue);
  /external/chromium_org/third_party/WebKit/Source/core/html/
FormController.cpp 94 FormElementKey(WTF::HashTableDeletedValueType) : m_name(hashTableDeletedValue()) { }
95 bool isHashTableDeletedValue() const { return m_name == hashTableDeletedValue(); }
101 static StringImpl* hashTableDeletedValue() { return reinterpret_cast<StringImpl*>(-1); }
168 static void constructDeletedValue(FormElementKey& slot) { new (NotNull, &slot) FormElementKey(WTF::HashTableDeletedValue); }

Completed in 112 milliseconds