Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/dom/
DElementData.h68 size_t getAttributeItemIndex(const QualifiedName&, bool shouldIgnoreCase = false) const;
185 inline size_t ElementData::getAttributeItemIndex(const QualifiedName& name, bool shouldIgnoreCase) … in getAttributeItemIndex() argument
192 if (attribute.name().matchesPossiblyIgnoringCase(name, shouldIgnoreCase)) in getAttributeItemIndex()
DQualifiedName.h85 …er, bool shouldIgnoreCase) const { return m_impl == other.m_impl || (equalPossiblyIgnoringCase(loc… in matchesPossiblyIgnoringCase() argument
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorDOMAgent.cpp696 bool shouldIgnoreCase = element->document().isHTMLDocument() && element->isHTMLElement(); in setAttributesAsText() local
698 if (shouldIgnoreCase && element->document().body()) in setAttributesAsText()
709 String caseAdjustedName = name ? (shouldIgnoreCase ? name->lower() : *name) : String(); in setAttributesAsText()
722 if (shouldIgnoreCase) in setAttributesAsText()