Home | History | Annotate | Download | only in text

Lines Matching refs:AtomicString

32 #include <wtf/text/AtomicString.h>
38 static unsigned hash(const AtomicString& key)
43 static bool equal(const AtomicString& a, const AtomicString& b)
51 // AtomicStringHash is the default hash for AtomicString
52 template<> struct HashTraits<WTF::AtomicString> : GenericHashTraits<WTF::AtomicString> {
54 static void constructDeletedValue(WTF::AtomicString& slot) { new (&slot) WTF::AtomicString(HashTableDeletedValue); }
55 static bool isDeletedValue(const WTF::AtomicString& slot) { return slot.isHashTableDeletedValue(); }