Home
last modified time | relevance | path

Searched refs:FormElementKey (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/dom/
DDocument.h158 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() function
182 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 …]
DDocument.cpp4358 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::FormElementKey
4396 FormElementKey::~FormElementKey() in ~FormElementKey()
4401 FormElementKey::FormElementKey(const FormElementKey& other) in FormElementKey() function in WebCore::FormElementKey
4407 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()
/external/webkit/Source/WebCore/
DChangeLog-2006-05-101560 * dom/Document.h: Added FormElementKey, FormElementKeyHash, and FormElementKeyHashTraits
1593 (WebCore::FormElementKey::FormElementKey): Added.
1594 (WebCore::FormElementKey::~FormElementKey): Added.
1595 (WebCore::FormElementKey::operator=): Added.
1596 (WebCore::FormElementKey::ref): Added.
1597 (WebCore::FormElementKey::deref): Added.
DChangeLog-2008-08-1020589 (WebCore::FormElementKey::hashTableDeletedValue): GCC complained about the const keyword
20590 so remove it as it is only used inside FormElementKey.
26016 (WebCore::FormElementKey::ref): Removed unneeded check for deleted value -- this
26018 (WebCore::FormElementKey::deref): Ditto.
26021 to FormElementKey. Changed FormElementKeyHashTraits to use construct/isDeletedValue.
DChangeLog-2010-12-0646579 Add this function for hashing FormElementKey and QualifiedNameComponents.
/external/webkit/Source/JavaScriptCore/
DChangeLog-2011-02-1613462 Add this function for hashing FormElementKey and QualifiedNameComponents.