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

  /external/chromium_org/third_party/WebKit/Source/core/dom/
AttributeCollection.h 66 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...]
QualifiedName.h 109 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/
InspectorDOMAgent.cpp 745 bool shouldIgnoreCase = element->document().isHTMLDocument() && element->isHTMLElement();
747 if (shouldIgnoreCase && element->document().body())
758 String caseAdjustedName = name ? (shouldIgnoreCase ? name->lower() : *name) : String();
771 if (shouldIgnoreCase)
    [all...]

Completed in 1112 milliseconds