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

  /external/webkit/Source/WebCore/dom/
NamedNodeMap.h 114 Attribute* getAttributeItem(const String& name, bool shouldIgnoreAttributeCase) const;
115 Attribute* getAttributeItemSlowCase(const String& name, bool shouldIgnoreAttributeCase) const;
136 // We use a boolean parameter instead of calling shouldIgnoreAttributeCase so that the caller
138 inline Attribute* NamedNodeMap::getAttributeItem(const String& name, bool shouldIgnoreAttributeCase) const
141 bool doSlowCheck = shouldIgnoreAttributeCase;
154 return getAttributeItemSlowCase(name, shouldIgnoreAttributeCase);
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 863 milliseconds