Searched refs:shouldIgnoreCase (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DAttributeCollection.h66 iterator find(const AtomicString& name, bool shouldIgnoreCase) const;
67 size_t findIndex(const QualifiedName&, bool shouldIgnoreCase = false) const;
68 size_t findIndex(const AtomicString& name, bool shouldIgnoreCase) const;
128 inline typename AttributeCollectionGeneric<Container, ContainerMemberType>::iterator AttributeCollectionGeneric<Container, ContainerMemberType>::find(const AtomicString& name, bool shouldIgnoreCase) const
130 size_t index = findIndex(name, shouldIgnoreCase);
135 inline size_t AttributeCollectionGeneric<Container, ContainerMemberType>::findIndex(const QualifiedName& name, bool shouldIgnoreCase) const
140 if (it->name().matchesPossiblyIgnoringCase(name, shouldIgnoreCase))
149 inline size_t AttributeCollectionGeneric<Container, ContainerMemberType>::findIndex(const AtomicString& name, bool shouldIgnoreCase) const
151 bool doSlowCheck = shouldIgnoreCase;
168 return findSlowCase(name, shouldIgnoreCase);
[all...]
H A DQualifiedName.h109 bool matchesPossiblyIgnoringCase(const QualifiedName& other, bool shouldIgnoreCase) const { return m_impl == other.m_impl || (equalPossiblyIgnoringCase(localName(), other.localName(), shouldIgnoreCase) && namespaceURI() == other.namespaceURI()); }
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorDOMAgent.cpp745 bool shouldIgnoreCase = element->document().isHTMLDocument() && element->isHTMLElement(); local
747 if (shouldIgnoreCase && element->document().body())
758 String caseAdjustedName = name ? (shouldIgnoreCase ? name->lower() : *name) : String();
771 if (shouldIgnoreCase)

Completed in 73 milliseconds