OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:shouldIgnoreAttributeCase
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/dom/
NamedNodeMap.cpp
38
static inline bool
shouldIgnoreAttributeCase
(const Element* e)
59
Attribute* a = getAttributeItem(name,
shouldIgnoreAttributeCase
(m_element));
73
Attribute* a = getAttributeItem(name,
shouldIgnoreAttributeCase
(m_element));
174
Attribute* NamedNodeMap::getAttributeItemSlowCase(const String& name, bool
shouldIgnoreAttributeCase
) const
182
if (
shouldIgnoreAttributeCase
&& equalIgnoringCase(name, attrName.localName()))
188
if (equalPossiblyIgnoringCase(name, attrName.toString(),
shouldIgnoreAttributeCase
))
Element.cpp
620
static inline bool
shouldIgnoreAttributeCase
(const Element* e)
627
bool ignoreCase =
shouldIgnoreAttributeCase
(this);
665
const AtomicString& localName =
shouldIgnoreAttributeCase
(this) ? name.lower() : name;
[
all
...]
Completed in 463 milliseconds