Searched refs:shouldIgnoreAttributeCase (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | ElementData.h | 69 size_t getAttributeItemIndex(const AtomicString& name, bool shouldIgnoreAttributeCase) const; 103 … const Attribute* getAttributeItem(const AtomicString& name, bool shouldIgnoreAttributeCase) const; 104 …size_t getAttributeItemIndexSlowCase(const AtomicString& name, bool shouldIgnoreAttributeCase) con… 170 …bute* ElementData::getAttributeItem(const AtomicString& name, bool shouldIgnoreAttributeCase) const in getAttributeItem() argument 172 size_t index = getAttributeItemIndex(name, shouldIgnoreAttributeCase); in getAttributeItem() 200 … ElementData::getAttributeItemIndex(const AtomicString& name, bool shouldIgnoreAttributeCase) const in getAttributeItemIndex() argument 204 bool doSlowCheck = shouldIgnoreAttributeCase; in getAttributeItemIndex() 221 return getAttributeItemIndexSlowCase(name, shouldIgnoreAttributeCase); in getAttributeItemIndex()
|
D | ElementData.cpp | 127 …Data::getAttributeItemIndexSlowCase(const AtomicString& name, bool shouldIgnoreAttributeCase) const in getAttributeItemIndexSlowCase() 135 if (shouldIgnoreAttributeCase && equalIgnoringCase(name, attribute->localName())) in getAttributeItemIndexSlowCase() 141 … if (equalPossiblyIgnoringCase(name, attribute->name().toString(), shouldIgnoreAttributeCase)) in getAttributeItemIndexSlowCase()
|
D | NamedNodeMap.cpp | 60 …ttributes() ? m_element->getAttributeItemIndex(name, m_element->shouldIgnoreAttributeCase()) : kNo… in removeNamedItem()
|
D | Element.h | 148 bool shouldIgnoreAttributeCase() const; 161 …icString& name, bool shouldIgnoreAttributeCase) const { return elementData()->getAttributeItemInde… in getAttributeItemIndex() argument 778 inline bool Element::shouldIgnoreAttributeCase() const in shouldIgnoreAttributeCase() function
|
D | Element.cpp | 448 …irty && equalPossiblyIgnoringCase(localName, styleAttr.localName(), shouldIgnoreAttributeCase())) { in synchronizeAttribute() 874 …nst Attribute* attribute = elementData()->getAttributeItem(localName, shouldIgnoreAttributeCase())) in getAttribute() 892 …const AtomicString& caseAdjustedLocalName = shouldIgnoreAttributeCase() ? localName.lower() : loca… in setAttribute() 1983 …index = elementData->getAttributeItemIndex(attrNode->qualifiedName(), shouldIgnoreAttributeCase()); in setAttributeNode() 2094 AtomicString localName = shouldIgnoreAttributeCase() ? name.lower() : name; in removeAttribute() 2115 …nst Attribute* attribute = elementData()->getAttributeItem(localName, shouldIgnoreAttributeCase()); in getAttributeNode() 2138 …return elementData()->getAttributeItem(shouldIgnoreAttributeCase() ? localName.lower() : localName… in hasAttribute()
|