Searched refs:hashTableDeletedValue (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DRawPtr.h74 RawPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
75 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
129 static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); } function in class:WTF::RawPtr
H A DOwnPtr.h54 OwnPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
55 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
102 static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); } function in class:WTF::OwnPtr
H A DRefPtr.h56 RefPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
57 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
86 static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); } function in class:WTF::RefPtr
H A DRetainPtr.h82 RetainPtr(HashTableDeletedValueType) : m_ptr(hashTableDeletedValue()) { }
83 bool isHashTableDeletedValue() const { return m_ptr == hashTableDeletedValue(); }
124 static PtrType hashTableDeletedValue() { return reinterpret_cast<PtrType>(-1); } function in class:WTF::RetainPtr
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A Dnpruntime.cpp55 explicit StringKey(WTF::HashTableDeletedValueType) : m_string(hashTableDeletedValue()), m_length(0) { }
66 return m_string == hashTableDeletedValue();
73 const char* hashTableDeletedValue() const function in class:npruntime::StringKey
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DFormController.cpp95 FormElementKey(WTF::HashTableDeletedValueType) : m_name(hashTableDeletedValue()) { }
96 bool isHashTableDeletedValue() const { return m_name == hashTableDeletedValue(); }
102 static StringImpl* hashTableDeletedValue() { return reinterpret_cast<StringImpl*>(-1); } function in class:blink::FormElementKey

Completed in 245 milliseconds