Searched refs:FormElementKey (Results 1 – 6 of 6) sorted by relevance
158 class FormElementKey {160 FormElementKey(AtomicStringImpl* = 0, AtomicStringImpl* = 0);161 ~FormElementKey();162 FormElementKey(const FormElementKey&);163 FormElementKey& operator=(const FormElementKey&);169 FormElementKey(WTF::HashTableDeletedValueType) : m_name(hashTableDeletedValue()) { } in FormElementKey() function182 inline bool operator==(const FormElementKey& a, const FormElementKey& b)188 static unsigned hash(const FormElementKey&);189 static bool equal(const FormElementKey& a, const FormElementKey& b) { return a == b; } in equal()193 struct FormElementKeyHashTraits : WTF::GenericHashTraits<FormElementKey> {[all …]
4358 FormElementKey key(a.impl(), b.impl()); in setStateForNewFormElements()4378 Iterator it = m_stateForNewFormElements.find(FormElementKey(name, type)); in takeStateForFormElement()4390 FormElementKey::FormElementKey(AtomicStringImpl* name, AtomicStringImpl* type) in FormElementKey() function in WebCore::FormElementKey4396 FormElementKey::~FormElementKey() in ~FormElementKey()4401 FormElementKey::FormElementKey(const FormElementKey& other) in FormElementKey() function in WebCore::FormElementKey4407 FormElementKey& FormElementKey::operator=(const FormElementKey& other) in operator =()4416 void FormElementKey::ref() const in ref()4424 void FormElementKey::deref() const in deref()4432 unsigned FormElementKeyHash::hash(const FormElementKey& key) in hash()4434 return StringHasher::hashMemory<sizeof(FormElementKey)>(&key); in hash()
1560 * dom/Document.h: Added FormElementKey, FormElementKeyHash, and FormElementKeyHashTraits1593 (WebCore::FormElementKey::FormElementKey): Added.1594 (WebCore::FormElementKey::~FormElementKey): Added.1595 (WebCore::FormElementKey::operator=): Added.1596 (WebCore::FormElementKey::ref): Added.1597 (WebCore::FormElementKey::deref): Added.
20589 (WebCore::FormElementKey::hashTableDeletedValue): GCC complained about the const keyword20590 so remove it as it is only used inside FormElementKey.26016 (WebCore::FormElementKey::ref): Removed unneeded check for deleted value -- this26018 (WebCore::FormElementKey::deref): Ditto.26021 to FormElementKey. Changed FormElementKeyHashTraits to use construct/isDeletedValue.
46579 Add this function for hashing FormElementKey and QualifiedNameComponents.
13462 Add this function for hashing FormElementKey and QualifiedNameComponents.