Home
last modified time | relevance | path

Searched refs:shouldIgnoreAttributeCase (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/dom/
DNamedNodeMap.h114 Attribute* getAttributeItem(const String& name, bool shouldIgnoreAttributeCase) const;
115 Attribute* getAttributeItemSlowCase(const String& name, bool shouldIgnoreAttributeCase) const;
138 inline Attribute* NamedNodeMap::getAttributeItem(const String& name, bool shouldIgnoreAttributeCase in getAttributeItem() argument
141 bool doSlowCheck = shouldIgnoreAttributeCase; in getAttributeItem()
154 return getAttributeItemSlowCase(name, shouldIgnoreAttributeCase); in getAttributeItem()
DNamedNodeMap.cpp38 static inline bool shouldIgnoreAttributeCase(const Element* e) in shouldIgnoreAttributeCase() function
59 Attribute* a = getAttributeItem(name, shouldIgnoreAttributeCase(m_element)); in getNamedItem()
73 Attribute* a = getAttributeItem(name, shouldIgnoreAttributeCase(m_element)); in removeNamedItem()
174 …e* NamedNodeMap::getAttributeItemSlowCase(const String& name, bool shouldIgnoreAttributeCase) const in getAttributeItemSlowCase()
182 if (shouldIgnoreAttributeCase && equalIgnoringCase(name, attrName.localName())) in getAttributeItemSlowCase()
188 if (equalPossiblyIgnoringCase(name, attrName.toString(), shouldIgnoreAttributeCase)) in getAttributeItemSlowCase()
DElement.cpp620 static inline bool shouldIgnoreAttributeCase(const Element* e) in shouldIgnoreAttributeCase() function
627 bool ignoreCase = shouldIgnoreAttributeCase(this); in getAttribute()
665 const AtomicString& localName = shouldIgnoreAttributeCase(this) ? name.lower() : name; in setAttribute()
1498 String localName = shouldIgnoreAttributeCase(this) ? name.lower() : name; in removeAttribute()
1519 String localName = shouldIgnoreAttributeCase(this) ? name.lower() : name; in getAttributeNode()
1539 String localName = shouldIgnoreAttributeCase(this) ? name.lower() : name; in hasAttribute()
/external/webkit/Source/WebCore/
DChangeLog-2007-10-143299 (WebCore::shouldIgnoreAttributeCase): check to make sure element is an HTMLElement
3306 (WebCore::shouldIgnoreAttributeCase):