OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:shouldignorecase
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
ElementData.h
68
size_t getAttributeItemIndex(const QualifiedName&, bool
shouldIgnoreCase
= false) const;
185
inline size_t ElementData::getAttributeItemIndex(const QualifiedName& name, bool
shouldIgnoreCase
) const
192
if (attribute.name().matchesPossiblyIgnoringCase(name,
shouldIgnoreCase
))
QualifiedName.h
85
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
696
bool
shouldIgnoreCase
= element->document().isHTMLDocument() && element->isHTMLElement();
698
if (
shouldIgnoreCase
&& element->document().body())
709
String caseAdjustedName = name ? (
shouldIgnoreCase
? name->lower() : *name) : String();
722
if (
shouldIgnoreCase
)
[
all
...]
Completed in 89 milliseconds