Searched refs:getAttributeItemIndex (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | ElementData.h | 68 size_t getAttributeItemIndex(const QualifiedName&, bool shouldIgnoreCase = false) const; 69 size_t getAttributeItemIndex(const AtomicString& name, bool shouldIgnoreAttributeCase) const; 172 size_t index = getAttributeItemIndex(name, shouldIgnoreAttributeCase); in getAttributeItem() 185 inline size_t ElementData::getAttributeItemIndex(const QualifiedName& name, bool shouldIgnoreCase) … in getAttributeItemIndex() function 200 inline size_t ElementData::getAttributeItemIndex(const AtomicString& name, bool shouldIgnoreAttribu… in getAttributeItemIndex() function
|
D | NamedNodeMap.cpp | 60 …size_t index = m_element->hasAttributes() ? m_element->getAttributeItemIndex(name, m_element->shou… in removeNamedItem() 70 …size_t index = m_element->hasAttributes() ? m_element->getAttributeItemIndex(QualifiedName(nullAto… in removeNamedItemNS()
|
D | Element.h | 160 …size_t getAttributeItemIndex(const QualifiedName& name) const { return elementData()->getAttribute… in getAttributeItemIndex() function 161 …size_t getAttributeItemIndex(const AtomicString& name, bool shouldIgnoreAttributeCase) const { ret… in getAttributeItemIndex() function
|
D | Element.cpp | 351 size_t index = elementData()->getAttributeItemIndex(name); in removeAttribute() 894 …size_t index = elementData() ? elementData()->getAttributeItemIndex(caseAdjustedLocalName, false) … in setAttribute() 902 size_t index = elementData() ? elementData()->getAttributeItemIndex(name) : kNotFound; in setAttribute() 908 size_t index = elementData() ? elementData()->getAttributeItemIndex(name) : kNotFound; in setSynchronizedLazyAttribute() 1983 …size_t index = elementData->getAttributeItemIndex(attrNode->qualifiedName(), shouldIgnoreAttribute… in setAttributeNode() 2095 size_t index = elementData()->getAttributeItemIndex(localName, false); in removeAttribute()
|