HomeSort by relevance Sort by last modified time
    Searched defs:hasTagName (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLElement.h 47 bool hasTagName(const HTMLQualifiedName& name) const { return hasLocalName(name.localName()); }
151 inline bool Node::hasTagName(const HTMLQualifiedName& name) const
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/
HTMLStackItem.h 79 bool hasTagName(const QualifiedName& name) const { return m_tokenLocalName == name.localName() && m_namespaceURI == name.namespaceURI(); }
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(HTMLNames::h4Tag
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.h 65 bool hasTagName(const SVGQualifiedName& name) const { return hasLocalName(name.localName()); }
274 inline bool Node::hasTagName(const SVGQualifiedName& name) const
276 return isSVGElement() && toSVGElement(*this).hasTagName(name);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.h 221 bool hasTagName(const QualifiedName& tagName) const { return m_tagName.matches(tagName); }
222 bool hasTagName(const HTMLQualifiedName& tagName) const { return ContainerNode::hasTagName(tagName); }
223 bool hasTagName(const SVGQualifiedName& tagName) const { return ContainerNode::hasTagName(tagName); }
    [all...]

Completed in 230 milliseconds