Home
last modified time | relevance | path

Searched refs:shouldIgnoreAttributeCase (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
DElementData.h69 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()
DElementData.cpp127 …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()
DNamedNodeMap.cpp60 …ttributes() ? m_element->getAttributeItemIndex(name, m_element->shouldIgnoreAttributeCase()) : kNo… in removeNamedItem()
DElement.h148 bool shouldIgnoreAttributeCase() const;
161 …icString& name, bool shouldIgnoreAttributeCase) const { return elementData()->getAttributeItemInde… in getAttributeItemIndex() argument
778 inline bool Element::shouldIgnoreAttributeCase() const in shouldIgnoreAttributeCase() function
DElement.cpp448 …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()