Searched defs:hasLocalName (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/dom/
H A DElement.h193 bool hasLocalName(const AtomicString& other) const { return m_tagName.localName() == other; } function in class:WebCore::Element
194 bool hasLocalName(const QualifiedName& other) const { return m_tagName.localName() == other.localName(); } function in class:WebCore::Element
441 inline bool Node::hasLocalName(const AtomicString& name) const function in class:WebCore::Node
443 return isElementNode() && toElement(this)->hasLocalName(name);

Completed in 200 milliseconds