Home
last modified time | relevance | path

Searched refs:idAttrVal (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/html/
DHTMLFormCollection.cpp198 const AtomicString& idAttrVal = element->getIdAttribute(); in updateNameCache() local
200 if (!idAttrVal.isEmpty()) { in updateNameCache()
202 Vector<Element*>* idVector = info()->idCache.get(idAttrVal.impl()); in updateNameCache()
205 info()->idCache.add(idAttrVal.impl(), idVector); in updateNameCache()
208 foundInputElements.add(idAttrVal.impl()); in updateNameCache()
210 if (!nameAttrVal.isEmpty() && idAttrVal != nameAttrVal) { in updateNameCache()
225 const AtomicString& idAttrVal = element->getIdAttribute(); in updateNameCache() local
227 if (!idAttrVal.isEmpty() && !foundInputElements.contains(idAttrVal.impl())) { in updateNameCache()
229 Vector<Element*>* idVector = info()->idCache.get(idAttrVal.impl()); in updateNameCache()
232 info()->idCache.add(idAttrVal.impl(), idVector); in updateNameCache()
[all …]
DHTMLCollection.cpp322 const AtomicString& idAttrVal = e->getIdAttribute(); in updateNameCache() local
324 if (!idAttrVal.isEmpty()) { in updateNameCache()
326 Vector<Element*>* idVector = m_info->idCache.get(idAttrVal.impl()); in updateNameCache()
329 m_info->idCache.add(idAttrVal.impl(), idVector); in updateNameCache()
333 if (!nameAttrVal.isEmpty() && idAttrVal != nameAttrVal in updateNameCache()