HomeSort by relevance Sort by last modified time
    Searched refs:shouldIgnoreAttributeCase (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
AttributeCollection.h 72 size_t findSlowCase(const AtomicString& name, bool shouldIgnoreAttributeCase) const;
146 // We use a boolean parameter instead of calling shouldIgnoreAttributeCase so that the caller
197 size_t AttributeCollectionGeneric<Container, ContainerMemberType>::findSlowCase(const AtomicString& name, bool shouldIgnoreAttributeCase) const
206 if (shouldIgnoreAttributeCase && equalIgnoringCase(name, it->localName()))
212 if (equalPossiblyIgnoringCase(name, it->name().toString(), shouldIgnoreAttributeCase))
NamedNodeMap.cpp 61 size_t index = m_element->attributes().findIndex(name, m_element->shouldIgnoreAttributeCase());
Element.cpp 412 if (elementData()->m_styleAttributeIsDirty && equalPossiblyIgnoringCase(localName, styleAttr.localName(), shouldIgnoreAttributeCase())) {
443 bool Element::shouldIgnoreAttributeCase() const
860 if (const Attribute* attribute = elementData()->attributes().find(localName, shouldIgnoreAttributeCase()))
878 const AtomicString& caseAdjustedLocalName = shouldIgnoreAttributeCase() ? localName.lower() : localName;
    [all...]
Element.h 148 bool shouldIgnoreAttributeCase() const;
    [all...]

Completed in 1094 milliseconds