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

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLElement.h47 bool hasTagName(const HTMLQualifiedName& name) const { return hasLocalName(name.localName()); } function in class:blink::HTMLElement
151 inline bool Node::hasTagName(const HTMLQualifiedName& name) const function in class:blink::Node
153 return isHTMLElement() && toHTMLElement(*this).hasTagName(name);
160 bool operator() (const HTMLElement& element) const { return element.hasTagName(m_tagName); }
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLStackItem.h79 bool hasTagName(const QualifiedName& name) const { return m_tokenLocalName == name.localName() && m_namespaceURI == name.namespaceURI(); } function in class:blink::HTMLStackItem
86 return hasTagName(HTMLNames::tableTag)
87 || hasTagName(HTMLNames::tbodyTag)
88 || hasTagName(HTMLNames::tfootTag)
89 || hasTagName(HTMLNames::theadTag)
90 || hasTagName(HTMLNames::trTag);
103 return hasTagName(HTMLNames::h1Tag)
104 || hasTagName(HTMLNames::h2Tag)
105 || hasTagName(HTMLNames::h3Tag)
106 || hasTagName(HTMLName
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGElement.h65 bool hasTagName(const SVGQualifiedName& name) const { return hasLocalName(name.localName()); } function in class:blink::SVGElement
274 inline bool Node::hasTagName(const SVGQualifiedName& name) const function in class:blink::Node
276 return isSVGElement() && toSVGElement(*this).hasTagName(name);
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DElement.h221 bool hasTagName(const QualifiedName& tagName) const { return m_tagName.matches(tagName); } function in class:blink::Element
222 bool hasTagName(const HTMLQualifiedName& tagName) const { return ContainerNode::hasTagName(tagName); } function in class:blink::Element
223 bool hasTagName(const SVGQualifiedName& tagName) const { return ContainerNode::hasTagName(tagName); } function in class:blink::Element

Completed in 715 milliseconds