hasTagName        224 Source/core/accessibility/AXNodeObject.cpp     if (node()->hasTagName(iframeTag))
hasTagName        810 Source/core/accessibility/AXNodeObject.cpp     if (node->hasTagName(h1Tag))
hasTagName        813 Source/core/accessibility/AXNodeObject.cpp     if (node->hasTagName(h2Tag))
hasTagName        816 Source/core/accessibility/AXNodeObject.cpp     if (node->hasTagName(h3Tag))
hasTagName        819 Source/core/accessibility/AXNodeObject.cpp     if (node->hasTagName(h4Tag))
hasTagName        822 Source/core/accessibility/AXNodeObject.cpp     if (node->hasTagName(h5Tag))
hasTagName        825 Source/core/accessibility/AXNodeObject.cpp     if (node->hasTagName(h6Tag))
hasTagName        340 Source/core/accessibility/AXRenderObject.cpp     if (node && node->hasTagName(ddTag))
hasTagName        343 Source/core/accessibility/AXRenderObject.cpp     if (node && node->hasTagName(dtTag))
hasTagName        346 Source/core/accessibility/AXRenderObject.cpp     if (node && (node->hasTagName(rpTag) || node->hasTagName(rtTag)))
hasTagName        368 Source/core/accessibility/AXRenderObject.cpp     if (node && node->hasTagName(articleTag))
hasTagName        371 Source/core/accessibility/AXRenderObject.cpp     if (node && node->hasTagName(mainTag))
hasTagName        374 Source/core/accessibility/AXRenderObject.cpp     if (node && node->hasTagName(navTag))
hasTagName        377 Source/core/accessibility/AXRenderObject.cpp     if (node && node->hasTagName(asideTag))
hasTagName        380 Source/core/accessibility/AXRenderObject.cpp     if (node && node->hasTagName(sectionTag))
hasTagName        383 Source/core/accessibility/AXRenderObject.cpp     if (node && node->hasTagName(addressTag))
hasTagName        386 Source/core/accessibility/AXRenderObject.cpp     if (node && node->hasTagName(dialogTag))
hasTagName        393 Source/core/accessibility/AXRenderObject.cpp     if (node && node->hasTagName(iframeTag))
hasTagName        398 Source/core/accessibility/AXRenderObject.cpp     if (node && node->hasTagName(headerTag) && !isDescendantOfElementType(articleTag) && !isDescendantOfElementType(sectionTag))
hasTagName        400 Source/core/accessibility/AXRenderObject.cpp     if (node && node->hasTagName(footerTag) && !isDescendantOfElementType(articleTag) && !isDescendantOfElementType(sectionTag))
hasTagName       2034 Source/core/accessibility/AXRenderObject.cpp         if (parent->node() && parent->node()->hasTagName(tagName))
hasTagName        183 Source/core/accessibility/AXTable.cpp             bool isTHCell = cellNode->hasTagName(thTag);
hasTagName        150 Source/core/accessibility/AXTableCell.cpp     if (node && node->hasTagName(thTag))
hasTagName        171 Source/core/accessibility/AXTableCell.cpp     if (!cellElement || !cellElement->hasTagName(thTag))
hasTagName        139 Source/core/accessibility/AXTableColumn.cpp         if (thTagRequired && !node->hasTagName(thTag))
hasTagName        125 Source/core/accessibility/AXTableRow.cpp     if (!cellNode || !cellNode->hasTagName(thTag))
hasTagName         64 Source/core/css/AffectedByFocusTest.cpp         ASSERT_TRUE(elm->hasTagName(expected[i].tag));
hasTagName         63 Source/core/css/SiblingTraversalStrategies.h         if (sibling->hasTagName(type))
hasTagName         72 Source/core/css/SiblingTraversalStrategies.h         if (sibling->hasTagName(type))
hasTagName         91 Source/core/css/SiblingTraversalStrategies.h         if (sibling->hasTagName(type))
hasTagName        111 Source/core/css/SiblingTraversalStrategies.h         if (sibling->hasTagName(type))
hasTagName        169 Source/core/css/SiblingTraversalStrategies.h         if (m_siblings[i]->hasTagName(type))
hasTagName        181 Source/core/css/SiblingTraversalStrategies.h         if (m_siblings[i]->hasTagName(type))
hasTagName        220 Source/core/css/SiblingTraversalStrategies.h         if (m_siblings[i]->hasTagName(type))
hasTagName        233 Source/core/css/SiblingTraversalStrategies.h         if (m_siblings[i]->hasTagName(type))
hasTagName        305 Source/core/css/resolver/StyleAdjuster.cpp         if (element.hasTagName(tdTag) && m_useQuirksModeStyles) {
hasTagName        311 Source/core/css/resolver/StyleAdjuster.cpp         if (element.hasTagName(thTag) && style->textAlign() == TASTART)
hasTagName        236 Source/core/dom/Element.h     bool hasTagName(const QualifiedName& tagName) const { return m_tagName.matches(tagName); }
hasTagName        693 Source/core/dom/Element.h inline bool Node::hasTagName(const QualifiedName& name) const
hasTagName        695 Source/core/dom/Element.h     return isElementNode() && toElement(this)->hasTagName(name);
hasTagName        163 Source/core/dom/Node.h     bool hasTagName(const QualifiedName&) const;
hasTagName        838 Source/core/editing/ApplyStyleCommand.cpp     return (m_styledInlineElement && element->hasTagName(m_styledInlineElement->tagQName()))
hasTagName        161 Source/core/editing/EditingStyle.cpp     virtual bool matches(const Element* element) const { return !m_tagName || element->hasTagName(*m_tagName); }
hasTagName         79 Source/core/editing/FormatBlockCommand.cpp         if (refNode->hasTagName(tagName()))
hasTagName         44 Source/core/editing/IndentOutdentCommand.cpp     return node && (isHTMLUListElement(*node) || isHTMLOListElement(*node) || node->hasTagName(blockquoteTag));
hasTagName        162 Source/core/editing/IndentOutdentCommand.cpp                 if (splitPointParent->hasTagName(blockquoteTag)
hasTagName        163 Source/core/editing/IndentOutdentCommand.cpp                     && !splitPoint->hasTagName(blockquoteTag)
hasTagName         92 Source/core/editing/InsertListCommand.cpp         if (!listNode || !listNode->hasTagName(listTag))
hasTagName        211 Source/core/editing/InsertListCommand.cpp         if (!listNode->hasTagName(listTag))
hasTagName        326 Source/core/editing/InsertListCommand.cpp     if (!listNode->hasTagName(listTag)
hasTagName         91 Source/core/editing/InsertParagraphSeparatorCommand.cpp     if (originalEnclosingBlock->hasTagName(h1Tag) ||
hasTagName         92 Source/core/editing/InsertParagraphSeparatorCommand.cpp         originalEnclosingBlock->hasTagName(h2Tag) ||
hasTagName         93 Source/core/editing/InsertParagraphSeparatorCommand.cpp         originalEnclosingBlock->hasTagName(h3Tag) ||
hasTagName         94 Source/core/editing/InsertParagraphSeparatorCommand.cpp         originalEnclosingBlock->hasTagName(h4Tag) ||
hasTagName         95 Source/core/editing/InsertParagraphSeparatorCommand.cpp         originalEnclosingBlock->hasTagName(h5Tag))
hasTagName        115 Source/core/editing/InsertParagraphSeparatorCommand.cpp     return enclosingBlock->hasTagName(h1Tag) ||
hasTagName        116 Source/core/editing/InsertParagraphSeparatorCommand.cpp            enclosingBlock->hasTagName(h2Tag) ||
hasTagName        117 Source/core/editing/InsertParagraphSeparatorCommand.cpp            enclosingBlock->hasTagName(h3Tag) ||
hasTagName        118 Source/core/editing/InsertParagraphSeparatorCommand.cpp            enclosingBlock->hasTagName(h4Tag) ||
hasTagName        119 Source/core/editing/InsertParagraphSeparatorCommand.cpp            enclosingBlock->hasTagName(h5Tag);
hasTagName        129 Source/core/editing/MarkupAccumulator.cpp             if (targetNode.hasTagName(tagNamesToSkip->at(i)))
hasTagName        420 Source/core/editing/ReplaceSelectionCommand.cpp     return node && node->hasTagName(blockquoteTag) && toElement(node)->getAttribute(classAttr) == ApplePasteAsQuotation;
hasTagName        428 Source/core/editing/ReplaceSelectionCommand.cpp     return a->hasTagName(h1Tag)
hasTagName        429 Source/core/editing/ReplaceSelectionCommand.cpp         || a->hasTagName(h2Tag)
hasTagName        430 Source/core/editing/ReplaceSelectionCommand.cpp         || a->hasTagName(h3Tag)
hasTagName        431 Source/core/editing/ReplaceSelectionCommand.cpp         || a->hasTagName(h4Tag)
hasTagName        432 Source/core/editing/ReplaceSelectionCommand.cpp         || a->hasTagName(h5Tag)
hasTagName        433 Source/core/editing/ReplaceSelectionCommand.cpp         || a->hasTagName(h6Tag);
hasTagName        451 Source/core/editing/ReplaceSelectionCommand.cpp            sourceBlock && (!sourceBlock->hasTagName(blockquoteTag) || isMailBlockquote(sourceBlock))  &&
hasTagName        860 Source/core/editing/TextIterator.cpp         return (node.hasTagName(blockquoteTag)
hasTagName        861 Source/core/editing/TextIterator.cpp             || node.hasTagName(ddTag)
hasTagName        862 Source/core/editing/TextIterator.cpp             || node.hasTagName(divTag)
hasTagName        863 Source/core/editing/TextIterator.cpp             || node.hasTagName(dlTag)
hasTagName        864 Source/core/editing/TextIterator.cpp             || node.hasTagName(dtTag)
hasTagName        865 Source/core/editing/TextIterator.cpp             || node.hasTagName(h1Tag)
hasTagName        866 Source/core/editing/TextIterator.cpp             || node.hasTagName(h2Tag)
hasTagName        867 Source/core/editing/TextIterator.cpp             || node.hasTagName(h3Tag)
hasTagName        868 Source/core/editing/TextIterator.cpp             || node.hasTagName(h4Tag)
hasTagName        869 Source/core/editing/TextIterator.cpp             || node.hasTagName(h5Tag)
hasTagName        870 Source/core/editing/TextIterator.cpp             || node.hasTagName(h6Tag)
hasTagName        871 Source/core/editing/TextIterator.cpp             || node.hasTagName(hrTag)
hasTagName        872 Source/core/editing/TextIterator.cpp             || node.hasTagName(liTag)
hasTagName        873 Source/core/editing/TextIterator.cpp             || node.hasTagName(listingTag)
hasTagName        874 Source/core/editing/TextIterator.cpp             || node.hasTagName(olTag)
hasTagName        875 Source/core/editing/TextIterator.cpp             || node.hasTagName(pTag)
hasTagName        876 Source/core/editing/TextIterator.cpp             || node.hasTagName(preTag)
hasTagName        877 Source/core/editing/TextIterator.cpp             || node.hasTagName(trTag)
hasTagName        878 Source/core/editing/TextIterator.cpp             || node.hasTagName(ulTag));
hasTagName        930 Source/core/editing/TextIterator.cpp     if (node->hasTagName(h1Tag)
hasTagName        931 Source/core/editing/TextIterator.cpp         || node->hasTagName(h2Tag)
hasTagName        932 Source/core/editing/TextIterator.cpp         || node->hasTagName(h3Tag)
hasTagName        933 Source/core/editing/TextIterator.cpp         || node->hasTagName(h4Tag)
hasTagName        934 Source/core/editing/TextIterator.cpp         || node->hasTagName(h5Tag)
hasTagName        935 Source/core/editing/TextIterator.cpp         || node->hasTagName(h6Tag)
hasTagName        936 Source/core/editing/TextIterator.cpp         || node->hasTagName(pTag)) {
hasTagName        556 Source/core/editing/htmlediting.cpp         if (n->hasTagName(tagName))
hasTagName        720 Source/core/editing/htmlediting.cpp     return firstList->hasTagName(secondList->tagQName()) // make sure the list types match (ol vs. ul)
hasTagName        921 Source/core/editing/htmlediting.cpp     if (!node || !node->hasTagName(blockquoteTag))
hasTagName       1075 Source/core/editing/htmlediting.cpp     if (!firstElement->hasTagName(secondElement->tagQName()))
hasTagName       1083 Source/core/editing/htmlediting.cpp     return node->hasTagName(listingTag)
hasTagName       1084 Source/core/editing/htmlediting.cpp         || node->hasTagName(olTag)
hasTagName       1085 Source/core/editing/htmlediting.cpp         || node->hasTagName(preTag)
hasTagName       1086 Source/core/editing/htmlediting.cpp         || node->hasTagName(tableTag)
hasTagName       1087 Source/core/editing/htmlediting.cpp         || node->hasTagName(ulTag)
hasTagName       1088 Source/core/editing/htmlediting.cpp         || node->hasTagName(xmpTag)
hasTagName       1089 Source/core/editing/htmlediting.cpp         || node->hasTagName(h1Tag)
hasTagName       1090 Source/core/editing/htmlediting.cpp         || node->hasTagName(h2Tag)
hasTagName       1091 Source/core/editing/htmlediting.cpp         || node->hasTagName(h3Tag)
hasTagName       1092 Source/core/editing/htmlediting.cpp         || node->hasTagName(h4Tag)
hasTagName       1093 Source/core/editing/htmlediting.cpp         || node->hasTagName(h5Tag);
hasTagName        432 Source/core/editing/markup.cpp     if (commonAncestorBlock->hasTagName(tbodyTag) || isHTMLTableRowElement(*commonAncestorBlock)) {
hasTagName        493 Source/core/editing/markup.cpp     return node->hasTagName(uTag) || node->hasTagName(sTag) || node->hasTagName(strikeTag)
hasTagName        494 Source/core/editing/markup.cpp         || node->hasTagName(iTag) || node->hasTagName(emTag) || node->hasTagName(bTag) || node->hasTagName(strongTag);
hasTagName        190 Source/core/html/HTMLElement.cpp             if (!hasTagName(bdiTag) && !hasTagName(bdoTag) && !hasTagName(outputTag))
hasTagName        101 Source/core/html/HTMLFormElement.cpp         || (parentRenderer->isTableSection() && node->hasTagName(tbodyTag))
hasTagName        102 Source/core/html/HTMLFormElement.cpp         || (parentRenderer->isRenderTableCol() && node->hasTagName(colTag))
hasTagName        128 Source/core/html/HTMLObjectElement.h     ASSERT_WITH_SECURITY_IMPLICATION(!objectElement || objectElement->hasTagName(HTMLNames::objectTag));
hasTagName        138 Source/core/html/HTMLObjectElement.h     ASSERT_WITH_SECURITY_IMPLICATION(objectElement.hasTagName(HTMLNames::objectTag));
hasTagName         37 Source/core/html/HTMLQuoteElement.cpp     ASSERT(hasTagName(qTag) || hasTagName(blockquoteTag));
hasTagName         68 Source/core/html/HTMLTableCellElement.h     return element.hasTagName(HTMLNames::tdTag) || element.hasTagName(HTMLNames::thTag);
hasTagName         55 Source/core/html/HTMLTableColElement.h     return element.hasTagName(HTMLNames::colTag) || element.hasTagName(HTMLNames::colgroupTag);
hasTagName         82 Source/core/html/HTMLTableElement.cpp         if (child->hasTagName(theadTag))
hasTagName         94 Source/core/html/HTMLTableElement.cpp         if (!child->hasTagName(captionTag) && !child->hasTagName(colgroupTag))
hasTagName        104 Source/core/html/HTMLTableElement.cpp         if (child->hasTagName(tfootTag))
hasTagName        116 Source/core/html/HTMLTableElement.cpp         if (!child->hasTagName(captionTag) && !child->hasTagName(colgroupTag) && !child->hasTagName(theadTag))
hasTagName        177 Source/core/html/HTMLTableElement.cpp         if (child->hasTagName(tbodyTag))
hasTagName         87 Source/core/html/HTMLTableRowElement.cpp         if (child->hasTagName(tbodyTag)) {
hasTagName         54 Source/core/html/HTMLTableSectionElement.h     return element.hasTagName(HTMLNames::tbodyTag) || element.hasTagName(HTMLNames::tfootTag) || element.hasTagName(HTMLNames::theadTag);
hasTagName         70 Source/core/html/parser/HTMLConstructionSite.cpp     return item->hasTagName(ddTag)
hasTagName         71 Source/core/html/parser/HTMLConstructionSite.cpp         || item->hasTagName(dtTag)
hasTagName         72 Source/core/html/parser/HTMLConstructionSite.cpp         || item->hasTagName(liTag)
hasTagName         73 Source/core/html/parser/HTMLConstructionSite.cpp         || item->hasTagName(optionTag)
hasTagName         74 Source/core/html/parser/HTMLConstructionSite.cpp         || item->hasTagName(optgroupTag)
hasTagName         75 Source/core/html/parser/HTMLConstructionSite.cpp         || item->hasTagName(pTag)
hasTagName         76 Source/core/html/parser/HTMLConstructionSite.cpp         || item->hasTagName(rpTag)
hasTagName         77 Source/core/html/parser/HTMLConstructionSite.cpp         || item->hasTagName(rtTag);
hasTagName        827 Source/core/html/parser/HTMLConstructionSite.cpp         if (lastTableElementRecord->next()->stackItem()->hasTagName(templateTag))
hasTagName         46 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(htmlTag);
hasTagName         51 Source/core/html/parser/HTMLElementStack.cpp     return item->hasTagName(appletTag)
hasTagName         52 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(captionTag)
hasTagName         53 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(marqueeTag)
hasTagName         54 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(objectTag)
hasTagName         55 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(tableTag)
hasTagName         56 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(tdTag)
hasTagName         57 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(thTag)
hasTagName         58 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(MathMLNames::miTag)
hasTagName         59 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(MathMLNames::moTag)
hasTagName         60 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(MathMLNames::mnTag)
hasTagName         61 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(MathMLNames::msTag)
hasTagName         62 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(MathMLNames::mtextTag)
hasTagName         63 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(MathMLNames::annotation_xmlTag)
hasTagName         64 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(SVGNames::foreignObjectTag)
hasTagName         65 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(SVGNames::descTag)
hasTagName         66 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(SVGNames::titleTag)
hasTagName         67 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(templateTag)
hasTagName         74 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(olTag)
hasTagName         75 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(ulTag);
hasTagName         80 Source/core/html/parser/HTMLElementStack.cpp     return item->hasTagName(tableTag)
hasTagName         81 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(templateTag)
hasTagName         87 Source/core/html/parser/HTMLElementStack.cpp     return item->hasTagName(tbodyTag)
hasTagName         88 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(tfootTag)
hasTagName         89 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(theadTag)
hasTagName         90 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(templateTag)
hasTagName         96 Source/core/html/parser/HTMLElementStack.cpp     return item->hasTagName(trTag)
hasTagName         97 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(templateTag)
hasTagName        111 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(buttonTag);
hasTagName        116 Source/core/html/parser/HTMLElementStack.cpp     return !item->hasTagName(optgroupTag)
hasTagName        117 Source/core/html/parser/HTMLElementStack.cpp         && !item->hasTagName(optionTag);
hasTagName        209 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(!topStackItem()->hasTagName(HTMLNames::headTag));
hasTagName        272 Source/core/html/parser/HTMLElementStack.cpp     return item->hasTagName(MathMLNames::miTag)
hasTagName        273 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(MathMLNames::moTag)
hasTagName        274 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(MathMLNames::mnTag)
hasTagName        275 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(MathMLNames::msTag)
hasTagName        276 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(MathMLNames::mtextTag);
hasTagName        284 Source/core/html/parser/HTMLElementStack.cpp     if (item->hasTagName(MathMLNames::annotation_xmlTag)) {
hasTagName        293 Source/core/html/parser/HTMLElementStack.cpp     return item->hasTagName(SVGNames::foreignObjectTag)
hasTagName        294 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(SVGNames::descTag)
hasTagName        295 Source/core/html/parser/HTMLElementStack.cpp         || item->hasTagName(SVGNames::titleTag);
hasTagName        312 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(item->hasTagName(htmlTag));
hasTagName        326 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(item->hasTagName(HTMLNames::headTag));
hasTagName        334 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(item->hasTagName(HTMLNames::bodyTag));
hasTagName        342 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(!item->hasTagName(htmlTag));
hasTagName        343 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(!item->hasTagName(headTag));
hasTagName        344 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(!item->hasTagName(bodyTag));
hasTagName        354 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(!item->hasTagName(htmlTag));
hasTagName        355 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(!item->hasTagName(headTag));
hasTagName        356 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(!item->hasTagName(bodyTag));
hasTagName        569 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(!topStackItem()->hasTagName(htmlTag));
hasTagName        570 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(!topStackItem()->hasTagName(headTag) || !m_headElement);
hasTagName        571 Source/core/html/parser/HTMLElementStack.cpp     ASSERT(!topStackItem()->hasTagName(bodyTag) || !m_bodyElement);
hasTagName         78 Source/core/html/parser/HTMLStackItem.h     bool hasTagName(const QualifiedName& name) const { return m_tokenLocalName == name.localName() && m_namespaceURI == name.namespaceURI(); }
hasTagName         85 Source/core/html/parser/HTMLStackItem.h         return hasTagName(HTMLNames::tableTag)
hasTagName         86 Source/core/html/parser/HTMLStackItem.h             || hasTagName(HTMLNames::tbodyTag)
hasTagName         87 Source/core/html/parser/HTMLStackItem.h             || hasTagName(HTMLNames::tfootTag)
hasTagName         88 Source/core/html/parser/HTMLStackItem.h             || hasTagName(HTMLNames::theadTag)
hasTagName         89 Source/core/html/parser/HTMLStackItem.h             || hasTagName(HTMLNames::trTag);
hasTagName        102 Source/core/html/parser/HTMLStackItem.h         return hasTagName(HTMLNames::h1Tag)
hasTagName        103 Source/core/html/parser/HTMLStackItem.h             || hasTagName(HTMLNames::h2Tag)
hasTagName        104 Source/core/html/parser/HTMLStackItem.h             || hasTagName(HTMLNames::h3Tag)
hasTagName        105 Source/core/html/parser/HTMLStackItem.h             || hasTagName(HTMLNames::h4Tag)
hasTagName        106 Source/core/html/parser/HTMLStackItem.h             || hasTagName(HTMLNames::h5Tag)
hasTagName        107 Source/core/html/parser/HTMLStackItem.h             || hasTagName(HTMLNames::h6Tag);
hasTagName        112 Source/core/html/parser/HTMLStackItem.h         return hasTagName(HTMLNames::tbodyTag)
hasTagName        113 Source/core/html/parser/HTMLStackItem.h             || hasTagName(HTMLNames::tfootTag)
hasTagName        114 Source/core/html/parser/HTMLStackItem.h             || hasTagName(HTMLNames::theadTag);
hasTagName        120 Source/core/html/parser/HTMLStackItem.h         if (hasTagName(MathMLNames::miTag)
hasTagName        121 Source/core/html/parser/HTMLStackItem.h             || hasTagName(MathMLNames::moTag)
hasTagName        122 Source/core/html/parser/HTMLStackItem.h             || hasTagName(MathMLNames::mnTag)
hasTagName        123 Source/core/html/parser/HTMLStackItem.h             || hasTagName(MathMLNames::msTag)
hasTagName        124 Source/core/html/parser/HTMLStackItem.h             || hasTagName(MathMLNames::mtextTag)
hasTagName        125 Source/core/html/parser/HTMLStackItem.h             || hasTagName(MathMLNames::annotation_xmlTag)
hasTagName        126 Source/core/html/parser/HTMLStackItem.h             || hasTagName(SVGNames::foreignObjectTag)
hasTagName        127 Source/core/html/parser/HTMLStackItem.h             || hasTagName(SVGNames::descTag)
hasTagName        128 Source/core/html/parser/HTMLStackItem.h             || hasTagName(SVGNames::titleTag))
hasTagName        466 Source/core/html/parser/HTMLTreeBuilder.cpp     return item->hasTagName(liTag);
hasTagName        471 Source/core/html/parser/HTMLTreeBuilder.cpp     return item->hasTagName(ddTag)
hasTagName        472 Source/core/html/parser/HTMLTreeBuilder.cpp         || item->hasTagName(dtTag);
hasTagName        489 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->isSpecialNode() && !item->hasTagName(addressTag) && !item->hasTagName(divTag) && !item->hasTagName(pTag))
hasTagName        848 Source/core/html/parser/HTMLTreeBuilder.cpp         if (m_tree.currentStackItem()->hasTagName(optionTag)) {
hasTagName        859 Source/core/html/parser/HTMLTreeBuilder.cpp             if (!m_tree.currentStackItem()->hasTagName(rubyTag))
hasTagName        913 Source/core/html/parser/HTMLTreeBuilder.cpp     if (!m_tree.currentStackItem()->hasTagName(templateTag))
hasTagName       1323 Source/core/html/parser/HTMLTreeBuilder.cpp             if (m_tree.currentStackItem()->hasTagName(optionTag)) {
hasTagName       1331 Source/core/html/parser/HTMLTreeBuilder.cpp             if (m_tree.currentStackItem()->hasTagName(optionTag)) {
hasTagName       1335 Source/core/html/parser/HTMLTreeBuilder.cpp             if (m_tree.currentStackItem()->hasTagName(optgroupTag)) {
hasTagName       1568 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->hasTagName(templateTag))
hasTagName       1570 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->hasTagName(selectTag)) {
hasTagName       1572 Source/core/html/parser/HTMLTreeBuilder.cpp                 while (item->node() != m_tree.openElements()->rootNode() && !item->hasTagName(templateTag)) {
hasTagName       1575 Source/core/html/parser/HTMLTreeBuilder.cpp                     if (item->hasTagName(tableTag))
hasTagName       1581 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->hasTagName(tdTag) || item->hasTagName(thTag))
hasTagName       1583 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->hasTagName(trTag))
hasTagName       1585 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->hasTagName(tbodyTag) || item->hasTagName(theadTag) || item->hasTagName(tfootTag))
hasTagName       1587 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->hasTagName(captionTag))
hasTagName       1589 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->hasTagName(colgroupTag)) {
hasTagName       1592 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->hasTagName(tableTag))
hasTagName       1594 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->hasTagName(headTag)) {
hasTagName       1599 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->hasTagName(bodyTag))
hasTagName       1601 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->hasTagName(framesetTag)) {
hasTagName       1604 Source/core/html/parser/HTMLTreeBuilder.cpp         if (item->hasTagName(htmlTag)) {
hasTagName       1889 Source/core/html/parser/HTMLTreeBuilder.cpp     ASSERT(m_tree.currentStackItem()->hasTagName(trTag));
hasTagName       2068 Source/core/html/parser/HTMLTreeBuilder.cpp             ASSERT(m_tree.currentStackItem()->hasTagName(noscriptTag));
hasTagName       2070 Source/core/html/parser/HTMLTreeBuilder.cpp             ASSERT(m_tree.currentStackItem()->hasTagName(headTag));
hasTagName       2084 Source/core/html/parser/HTMLTreeBuilder.cpp             ASSERT(m_tree.currentStackItem()->hasTagName(scriptTag));
hasTagName       2112 Source/core/html/parser/HTMLTreeBuilder.cpp             if (!isParsingFragment() && !m_tree.currentStackItem()->hasTagName(framesetTag))
hasTagName       2151 Source/core/html/parser/HTMLTreeBuilder.cpp             if (m_tree.currentStackItem()->hasTagName(optionTag) && m_tree.oneBelowTop() && m_tree.oneBelowTop()->hasTagName(optgroupTag))
hasTagName       2153 Source/core/html/parser/HTMLTreeBuilder.cpp             if (m_tree.currentStackItem()->hasTagName(optgroupTag)) {
hasTagName       2161 Source/core/html/parser/HTMLTreeBuilder.cpp             if (m_tree.currentStackItem()->hasTagName(optionTag)) {
hasTagName       2305 Source/core/html/parser/HTMLTreeBuilder.cpp             && (m_tree.currentStackItem()->hasTagName(tableTag)
hasTagName       2306 Source/core/html/parser/HTMLTreeBuilder.cpp                 || m_tree.currentStackItem()->hasTagName(tbodyTag)
hasTagName       2307 Source/core/html/parser/HTMLTreeBuilder.cpp                 || m_tree.currentStackItem()->hasTagName(tfootTag)
hasTagName       2308 Source/core/html/parser/HTMLTreeBuilder.cpp                 || m_tree.currentStackItem()->hasTagName(theadTag)
hasTagName       2309 Source/core/html/parser/HTMLTreeBuilder.cpp                 || m_tree.currentStackItem()->hasTagName(trTag))) {
hasTagName       2451 Source/core/html/parser/HTMLTreeBuilder.cpp         ASSERT(m_tree.currentNode()->hasTagName(colgroupTag) || isHTMLTemplateElement(m_tree.currentNode()));
hasTagName       2471 Source/core/html/parser/HTMLTreeBuilder.cpp         if (m_tree.currentStackItem()->hasTagName(scriptTag))
hasTagName       2644 Source/core/html/parser/HTMLTreeBuilder.cpp     if (adjustedCurrentNode->hasTagName(MathMLNames::annotation_xmlTag)
hasTagName       2740 Source/core/html/parser/HTMLTreeBuilder.cpp         if (token->name() == SVGNames::scriptTag && m_tree.currentStackItem()->hasTagName(SVGNames::scriptTag)) {
hasTagName        403 Source/core/rendering/RenderObject.h     bool isBody() const { return node() && node()->hasTagName(HTMLNames::bodyTag); }
hasTagName         77 Source/core/svg/SVGAnimateElement.h     return node.hasTagName(SVGNames::animateTag)
hasTagName         78 Source/core/svg/SVGAnimateElement.h         || node.hasTagName(SVGNames::animateTransformTag)
hasTagName         79 Source/core/svg/SVGAnimateElement.h         || node.hasTagName(SVGNames::setTag);
hasTagName        523 Source/core/svg/SVGAnimationElement.cpp     if (hasTagName(SVGNames::animateTag)) {
hasTagName         84 Source/core/svg/SVGFELightElement.h     return node.hasTagName(SVGNames::feDistantLightTag) || node.hasTagName(SVGNames::fePointLightTag) || node.hasTagName(SVGNames::feSpotLightTag);
hasTagName         78 Source/core/svg/SVGGradientElement.h     return node.hasTagName(SVGNames::radialGradientTag) || node.hasTagName(SVGNames::linearGradientTag);
hasTagName         55 Source/core/svg/SVGPolyElement.h     return node.hasTagName(SVGNames::polygonTag) || node.hasTagName(SVGNames::polylineTag);
hasTagName        251 Source/core/svg/animation/SVGSMILElement.h     return node.hasTagName(SVGNames::setTag) || node.hasTagName(SVGNames::animateTag) || node.hasTagName(SVGNames::animateMotionTag)
hasTagName        252 Source/core/svg/animation/SVGSMILElement.h         || node.hasTagName(SVGNames::animateTransformTag) || node.hasTagName((SVGNames::discardTag));
hasTagName        353 Source/web/tests/WebViewTest.cpp     EXPECT_FALSE(negativeResult.node().to<WebElement>().hasTagName("img"));
hasTagName        360 Source/web/tests/WebViewTest.cpp     EXPECT_TRUE(positiveResult.node().to<WebElement>().hasTagName("img"));
hasTagName       1661 Source/web/tests/WebViewTest.cpp     if (element->hasTagName(WebCore::HTMLNames::iframeTag))
hasTagName         60 public/web/WebElement.h         BLINK_EXPORT bool hasTagName(const WebString&) const;