tagName 71 Source/bindings/v8/CustomElementConstructorBuilder.cpp bool CustomElementConstructorBuilder::validateOptions(const AtomicString& type, QualifiedName& tagName, ExceptionState& exceptionState) tagName 131 Source/bindings/v8/CustomElementConstructorBuilder.cpp tagName = QualifiedName(nullAtom, localName, namespaceURI); tagName 273 Source/bindings/v8/CustomElementConstructorBuilder.cpp V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, tagName, V8HiddenValue::getHiddenValue(isolate, info.Callee(), V8HiddenValue::customElementTagName(isolate))); tagName 279 Source/bindings/v8/CustomElementConstructorBuilder.cpp RefPtr<Element> element = document->createElementNS(namespaceURI, tagName, maybeType->IsNull() ? nullAtom : type, exceptionState); tagName 70 Source/bindings/v8/CustomElementConstructorBuilder.h bool validateOptions(const AtomicString& type, QualifiedName& tagName, ExceptionState&); tagName 2031 Source/core/accessibility/AXRenderObject.cpp bool AXRenderObject::isDescendantOfElementType(const QualifiedName& tagName) const tagName 2034 Source/core/accessibility/AXRenderObject.cpp if (parent->node() && parent->node()->hasTagName(tagName)) tagName 2309 Source/core/accessibility/AXRenderObject.cpp QualifiedName tagName = toElement(elementNode)->tagQName(); tagName 2310 Source/core/accessibility/AXRenderObject.cpp if (tagName == ulTag || tagName == olTag || tagName == dlTag) tagName 215 Source/core/accessibility/AXRenderObject.h bool isDescendantOfElementType(const QualifiedName& tagName) const; tagName 149 Source/core/css/RuleFeature.cpp features.tagName = selector.tagQName().localName(); tagName 218 Source/core/css/RuleFeature.cpp if (!features.tagName.isEmpty()) tagName 219 Source/core/css/RuleFeature.cpp invalidationSet->addTagName(features.tagName); tagName 150 Source/core/css/RuleFeature.h AtomicString tagName; tagName 150 Source/core/css/RuleSet.cpp static void extractValuesforSelector(const CSSSelector* selector, AtomicString& id, AtomicString& className, AtomicString& customPseudoElementName, AtomicString& tagName) tagName 161 Source/core/css/RuleSet.cpp tagName = selector->tagQName().localName(); tagName 173 Source/core/css/RuleSet.cpp AtomicString tagName; tagName 181 Source/core/css/RuleSet.cpp extractValuesforSelector(it, id, className, customPseudoElementName, tagName); tagName 185 Source/core/css/RuleSet.cpp extractValuesforSelector(it, id, className, customPseudoElementName, tagName); tagName 226 Source/core/css/RuleSet.cpp if (!tagName.isEmpty()) { tagName 227 Source/core/css/RuleSet.cpp addToRuleSet(tagName, ensurePendingRules()->tagRules, ruleData); tagName 126 Source/core/css/invalidation/DescendantInvalidationSet.cpp void DescendantInvalidationSet::addTagName(const AtomicString& tagName) tagName 130 Source/core/css/invalidation/DescendantInvalidationSet.cpp ensureTagNameSet().add(tagName); tagName 58 Source/core/css/invalidation/DescendantInvalidationSet.h void addTagName(const AtomicString& tagName); tagName 2356 Source/core/dom/Document.cpp exceptionState.throwDOMException(HierarchyRequestError, "The new body element is of type '" + newBody->tagName() + "'. It must be either a 'BODY' or 'FRAMESET' element."); tagName 160 Source/core/dom/Element.cpp PassRefPtr<Element> Element::create(const QualifiedName& tagName, Document* document) tagName 162 Source/core/dom/Element.cpp return adoptRef(new Element(tagName, document, CreateElement)); tagName 235 Source/core/dom/Element.h String tagName() const { return nodeName(); } tagName 236 Source/core/dom/Element.h bool hasTagName(const QualifiedName& tagName) const { return m_tagName.matches(tagName); } tagName 514 Source/core/dom/Element.h Element(const QualifiedName& tagName, Document* document, ConstructionType type) tagName 516 Source/core/dom/Element.h , m_tagName(tagName) tagName 860 Source/core/dom/Element.h inline void Element::setTagNameForCreateElementNS(const QualifiedName& tagName) tagName 863 Source/core/dom/Element.h ASSERT(tagName.localName() == m_tagName.localName()); tagName 864 Source/core/dom/Element.h ASSERT(tagName.namespaceURI() == m_tagName.namespaceURI()); tagName 865 Source/core/dom/Element.h m_tagName = tagName; tagName 161 Source/core/dom/Node.cpp HashMap<String, size_t>::AddResult result = perTagCount.add(element->tagName(), 1); tagName 47 Source/core/dom/PresentationAttributeStyle.cpp PresentationAttributeCacheKey() : tagName(0) { } tagName 48 Source/core/dom/PresentationAttributeStyle.cpp StringImpl* tagName; tagName 54 Source/core/dom/PresentationAttributeStyle.cpp if (a.tagName != b.tagName) tagName 143 Source/core/dom/PresentationAttributeStyle.cpp result.tagName = element.localName().impl(); tagName 148 Source/core/dom/PresentationAttributeStyle.cpp if (!key.tagName) tagName 152 Source/core/dom/PresentationAttributeStyle.cpp return WTF::pairIntHash(key.tagName->existingHash(), attributeHash); tagName 164 Source/core/dom/SelectorQuery.cpp void SelectorDataList::collectElementsByTagName(ContainerNode& rootNode, const QualifiedName& tagName, typename SelectorQueryTrait::OutputType& output) const tagName 167 Source/core/dom/SelectorQuery.cpp if (SelectorChecker::tagMatches(*element, tagName)) { tagName 61 Source/core/dom/SelectorQuery.h void collectElementsByTagName(ContainerNode& rootNode, const QualifiedName& tagName, typename SelectorQueryTrait::OutputType&) const; tagName 61 Source/core/dom/custom/CustomElementRegistrationContext.cpp PassRefPtr<Element> CustomElementRegistrationContext::createCustomTagElement(Document& document, const QualifiedName& tagName) tagName 63 Source/core/dom/custom/CustomElementRegistrationContext.cpp ASSERT(CustomElement::isValidName(tagName.localName())); tagName 67 Source/core/dom/custom/CustomElementRegistrationContext.cpp if (HTMLNames::xhtmlNamespaceURI == tagName.namespaceURI()) { tagName 68 Source/core/dom/custom/CustomElementRegistrationContext.cpp element = HTMLElement::create(tagName, document); tagName 69 Source/core/dom/custom/CustomElementRegistrationContext.cpp } else if (SVGNames::svgNamespaceURI == tagName.namespaceURI()) { tagName 70 Source/core/dom/custom/CustomElementRegistrationContext.cpp element = SVGUnknownElement::create(tagName, document); tagName 73 Source/core/dom/custom/CustomElementRegistrationContext.cpp return Element::create(tagName, &document); tagName 79 Source/core/dom/custom/CustomElementRegistry.cpp QualifiedName tagName = nullQName(); tagName 80 Source/core/dom/custom/CustomElementRegistry.cpp if (!constructorBuilder->validateOptions(type, tagName, exceptionState)) tagName 83 Source/core/dom/custom/CustomElementRegistry.cpp ASSERT(tagName.namespaceURI() == HTMLNames::xhtmlNamespaceURI || tagName.namespaceURI() == SVGNames::svgNamespaceURI); tagName 102 Source/core/dom/custom/CustomElementRegistry.cpp const CustomElementDescriptor descriptor(type, tagName.namespaceURI(), tagName.localName()); tagName 44 Source/core/dom/shadow/InsertionPoint.cpp InsertionPoint::InsertionPoint(const QualifiedName& tagName, Document& document) tagName 45 Source/core/dom/shadow/InsertionPoint.cpp : HTMLElement(tagName, document, CreateInsertionPoint) tagName 45 Source/core/editing/ApplyBlockElementCommand.cpp ApplyBlockElementCommand::ApplyBlockElementCommand(Document& document, const QualifiedName& tagName, const AtomicString& inlineStyle) tagName 47 Source/core/editing/ApplyBlockElementCommand.cpp , m_tagName(tagName) tagName 52 Source/core/editing/ApplyBlockElementCommand.cpp ApplyBlockElementCommand::ApplyBlockElementCommand(Document& document, const QualifiedName& tagName) tagName 54 Source/core/editing/ApplyBlockElementCommand.cpp , m_tagName(tagName) tagName 41 Source/core/editing/ApplyBlockElementCommand.h ApplyBlockElementCommand(Document&, const QualifiedName& tagName, const AtomicString& inlineStyle); tagName 42 Source/core/editing/ApplyBlockElementCommand.h ApplyBlockElementCommand(Document&, const QualifiedName& tagName); tagName 46 Source/core/editing/ApplyBlockElementCommand.h const QualifiedName tagName() const { return m_tagName; } tagName 155 Source/core/editing/EditingStyle.cpp static PassOwnPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, CSSValueID primitiveValue, const QualifiedName& tagName) tagName 157 Source/core/editing/EditingStyle.cpp return adoptPtr(new HTMLElementEquivalent(propertyID, primitiveValue, tagName)); tagName 169 Source/core/editing/EditingStyle.cpp HTMLElementEquivalent(CSSPropertyID, const QualifiedName& tagName); tagName 170 Source/core/editing/EditingStyle.cpp HTMLElementEquivalent(CSSPropertyID, CSSValueID primitiveValue, const QualifiedName& tagName); tagName 182 Source/core/editing/EditingStyle.cpp HTMLElementEquivalent::HTMLElementEquivalent(CSSPropertyID id, const QualifiedName& tagName) tagName 184 Source/core/editing/EditingStyle.cpp , m_tagName(&tagName) tagName 188 Source/core/editing/EditingStyle.cpp HTMLElementEquivalent::HTMLElementEquivalent(CSSPropertyID id, CSSValueID primitiveValue, const QualifiedName& tagName) tagName 191 Source/core/editing/EditingStyle.cpp , m_tagName(&tagName) tagName 209 Source/core/editing/EditingStyle.cpp static PassOwnPtr<HTMLElementEquivalent> create(CSSValueID primitiveValue, const QualifiedName& tagName) tagName 211 Source/core/editing/EditingStyle.cpp return adoptPtr(new HTMLTextDecorationEquivalent(primitiveValue, tagName)); tagName 217 Source/core/editing/EditingStyle.cpp HTMLTextDecorationEquivalent(CSSValueID primitiveValue, const QualifiedName& tagName); tagName 220 Source/core/editing/EditingStyle.cpp HTMLTextDecorationEquivalent::HTMLTextDecorationEquivalent(CSSValueID primitiveValue, const QualifiedName& tagName) tagName 221 Source/core/editing/EditingStyle.cpp : HTMLElementEquivalent(textDecorationPropertyForEditing(), primitiveValue, tagName) tagName 242 Source/core/editing/EditingStyle.cpp static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& tagName, const QualifiedName& attrName) tagName 244 Source/core/editing/EditingStyle.cpp return adoptPtr(new HTMLAttributeEquivalent(propertyID, tagName, attrName)); tagName 259 Source/core/editing/EditingStyle.cpp HTMLAttributeEquivalent(CSSPropertyID, const QualifiedName& tagName, const QualifiedName& attrName); tagName 264 Source/core/editing/EditingStyle.cpp HTMLAttributeEquivalent::HTMLAttributeEquivalent(CSSPropertyID id, const QualifiedName& tagName, const QualifiedName& attrName) tagName 265 Source/core/editing/EditingStyle.cpp : HTMLElementEquivalent(id, tagName) tagName 436 Source/core/editing/EditorCommand.cpp String tagName = value.lower(); tagName 437 Source/core/editing/EditorCommand.cpp if (tagName[0] == '<' && tagName[tagName.length() - 1] == '>') tagName 438 Source/core/editing/EditorCommand.cpp tagName = tagName.substring(1, tagName.length() - 2); tagName 441 Source/core/editing/EditorCommand.cpp if (!Document::parseQualifiedName(AtomicString(tagName), prefix, localName, IGNORE_EXCEPTION)) tagName 42 Source/core/editing/FormatBlockCommand.cpp static bool isElementForFormatBlock(const QualifiedName& tagName); tagName 48 Source/core/editing/FormatBlockCommand.cpp FormatBlockCommand::FormatBlockCommand(Document& document, const QualifiedName& tagName) tagName 49 Source/core/editing/FormatBlockCommand.cpp : ApplyBlockElementCommand(document, tagName) tagName 56 Source/core/editing/FormatBlockCommand.cpp if (!isElementForFormatBlock(tagName())) tagName 79 Source/core/editing/FormatBlockCommand.cpp if (refNode->hasTagName(tagName())) tagName 123 Source/core/editing/FormatBlockCommand.cpp bool isElementForFormatBlock(const QualifiedName& tagName) tagName 150 Source/core/editing/FormatBlockCommand.cpp return blockTags.contains(tagName); tagName 43 Source/core/editing/FormatBlockCommand.h static PassRefPtr<FormatBlockCommand> create(Document& document, const QualifiedName& tagName) tagName 45 Source/core/editing/FormatBlockCommand.h return adoptRef(new FormatBlockCommand(document, tagName)); tagName 54 Source/core/editing/FormatBlockCommand.h FormatBlockCommand(Document&, const QualifiedName& tagName); tagName 438 Source/core/editing/ReplaceSelectionCommand.cpp return a && b && a->isElementNode() && b->isElementNode() && toElement(a)->tagName() == toElement(b)->tagName(); tagName 547 Source/core/editing/htmlediting.cpp Node* enclosingNodeWithTag(const Position& p, const QualifiedName& tagName) tagName 556 Source/core/editing/htmlediting.cpp if (n->hasTagName(tagName)) tagName 819 Source/core/editing/htmlediting.cpp PassRefPtr<HTMLElement> createHTMLElement(Document& document, const AtomicString& tagName) tagName 821 Source/core/editing/htmlediting.cpp return HTMLElementFactory::createHTMLElement(tagName, document, 0, false); tagName 110 Source/core/html/HTMLAnchorElement.cpp HTMLAnchorElement::HTMLAnchorElement(const QualifiedName& tagName, Document& document) tagName 111 Source/core/html/HTMLAnchorElement.cpp : HTMLElement(tagName, document) tagName 125 Source/core/html/HTMLAnchorElement.cpp PassRefPtr<HTMLAnchorElement> HTMLAnchorElement::create(const QualifiedName& tagName, Document& document) tagName 127 Source/core/html/HTMLAnchorElement.cpp return adoptRef(new HTMLAnchorElement(tagName, document)); tagName 66 Source/core/html/HTMLElement.cpp PassRefPtr<HTMLElement> HTMLElement::create(const QualifiedName& tagName, Document& document) tagName 68 Source/core/html/HTMLElement.cpp return adoptRef(new HTMLElement(tagName, document)); tagName 43 Source/core/html/HTMLElement.h static PassRefPtr<HTMLElement> create(const QualifiedName& tagName, Document&); tagName 92 Source/core/html/HTMLElement.h HTMLElement(const QualifiedName& tagName, Document&, ConstructionType); tagName 132 Source/core/html/HTMLElement.h inline HTMLElement::HTMLElement(const QualifiedName& tagName, Document& document, ConstructionType type = CreateHTMLElement) tagName 133 Source/core/html/HTMLElement.h : Element(tagName, &document, type) tagName 135 Source/core/html/HTMLElement.h ASSERT(!tagName.localName().isNull()); tagName 46 Source/core/html/HTMLFormControlElement.cpp HTMLFormControlElement::HTMLFormControlElement(const QualifiedName& tagName, Document& document, HTMLFormElement* form) tagName 47 Source/core/html/HTMLFormControlElement.cpp : LabelableElement(tagName, document) tagName 118 Source/core/html/HTMLFormControlElement.h HTMLFormControlElement(const QualifiedName& tagName, Document&, HTMLFormElement*); tagName 37 Source/core/html/HTMLFormControlElementWithState.cpp HTMLFormControlElementWithState::HTMLFormControlElementWithState(const QualifiedName& tagName, Document& doc, HTMLFormElement* f) tagName 38 Source/core/html/HTMLFormControlElementWithState.cpp : HTMLFormControlElement(tagName, doc, f) tagName 47 Source/core/html/HTMLFormControlElementWithState.h HTMLFormControlElementWithState(const QualifiedName& tagName, Document&, HTMLFormElement*); tagName 44 Source/core/html/HTMLFrameElementBase.cpp HTMLFrameElementBase::HTMLFrameElementBase(const QualifiedName& tagName, Document& document) tagName 45 Source/core/html/HTMLFrameElementBase.cpp : HTMLFrameOwnerElement(tagName, document) tagName 93 Source/core/html/HTMLFrameOwnerElement.cpp HTMLFrameOwnerElement::HTMLFrameOwnerElement(const QualifiedName& tagName, Document& document) tagName 94 Source/core/html/HTMLFrameOwnerElement.cpp : HTMLElement(tagName, document) tagName 79 Source/core/html/HTMLFrameOwnerElement.h HTMLFrameOwnerElement(const QualifiedName& tagName, Document&); tagName 28 Source/core/html/HTMLHeadingElement.cpp inline HTMLHeadingElement::HTMLHeadingElement(const QualifiedName& tagName, Document& document) tagName 29 Source/core/html/HTMLHeadingElement.cpp : HTMLElement(tagName, document) tagName 34 Source/core/html/HTMLHeadingElement.cpp PassRefPtr<HTMLHeadingElement> HTMLHeadingElement::create(const QualifiedName& tagName, Document& document) tagName 36 Source/core/html/HTMLHeadingElement.cpp return adoptRef(new HTMLHeadingElement(tagName, document)); tagName 231 Source/core/html/HTMLMediaElement.cpp HTMLMediaElement::HTMLMediaElement(const QualifiedName& tagName, Document& document) tagName 232 Source/core/html/HTMLMediaElement.cpp : HTMLElement(tagName, document) tagName 32 Source/core/html/HTMLModElement.cpp inline HTMLModElement::HTMLModElement(const QualifiedName& tagName, Document& document) tagName 33 Source/core/html/HTMLModElement.cpp : HTMLElement(tagName, document) tagName 38 Source/core/html/HTMLModElement.cpp PassRefPtr<HTMLModElement> HTMLModElement::create(const QualifiedName& tagName, Document& document) tagName 40 Source/core/html/HTMLModElement.cpp return adoptRef(new HTMLModElement(tagName, document)); tagName 58 Source/core/html/HTMLPlugInElement.cpp HTMLPlugInElement::HTMLPlugInElement(const QualifiedName& tagName, Document& doc, bool createdByParser, PreferPlugInsForImagesOption preferPlugInsForImagesOption) tagName 59 Source/core/html/HTMLPlugInElement.cpp : HTMLFrameOwnerElement(tagName, doc) tagName 63 Source/core/html/HTMLPlugInElement.h HTMLPlugInElement(const QualifiedName& tagName, Document&, bool createdByParser, PreferPlugInsForImagesOption); tagName 35 Source/core/html/HTMLPreElement.cpp inline HTMLPreElement::HTMLPreElement(const QualifiedName& tagName, Document& document) tagName 36 Source/core/html/HTMLPreElement.cpp : HTMLElement(tagName, document) tagName 41 Source/core/html/HTMLPreElement.cpp PassRefPtr<HTMLPreElement> HTMLPreElement::create(const QualifiedName& tagName, Document& document) tagName 43 Source/core/html/HTMLPreElement.cpp return adoptRef(new HTMLPreElement(tagName, document)); tagName 34 Source/core/html/HTMLQuoteElement.cpp inline HTMLQuoteElement::HTMLQuoteElement(const QualifiedName& tagName, Document& document) tagName 35 Source/core/html/HTMLQuoteElement.cpp : HTMLElement(tagName, document) tagName 41 Source/core/html/HTMLQuoteElement.cpp PassRefPtr<HTMLQuoteElement> HTMLQuoteElement::create(const QualifiedName& tagName, Document& document) tagName 43 Source/core/html/HTMLQuoteElement.cpp return adoptRef(new HTMLQuoteElement(tagName, document)); tagName 78 Source/core/html/HTMLShadowElement.cpp String message = String::format("<shadow> doesn't work for %s element host.", root->host()->tagName().utf8().data()); tagName 45 Source/core/html/HTMLTableCellElement.cpp inline HTMLTableCellElement::HTMLTableCellElement(const QualifiedName& tagName, Document& document) tagName 46 Source/core/html/HTMLTableCellElement.cpp : HTMLTablePartElement(tagName, document) tagName 51 Source/core/html/HTMLTableCellElement.cpp PassRefPtr<HTMLTableCellElement> HTMLTableCellElement::create(const QualifiedName& tagName, Document& document) tagName 53 Source/core/html/HTMLTableCellElement.cpp return adoptRef(new HTMLTableCellElement(tagName, document)); tagName 37 Source/core/html/HTMLTableColElement.cpp inline HTMLTableColElement::HTMLTableColElement(const QualifiedName& tagName, Document& document) tagName 38 Source/core/html/HTMLTableColElement.cpp : HTMLTablePartElement(tagName, document) tagName 44 Source/core/html/HTMLTableColElement.cpp PassRefPtr<HTMLTableColElement> HTMLTableColElement::create(const QualifiedName& tagName, Document& document) tagName 46 Source/core/html/HTMLTableColElement.cpp return adoptRef(new HTMLTableColElement(tagName, document)); tagName 35 Source/core/html/HTMLTableColElement.h static PassRefPtr<HTMLTableColElement> create(const QualifiedName& tagName, Document&); tagName 43 Source/core/html/HTMLTableColElement.h HTMLTableColElement(const QualifiedName& tagName, Document&); tagName 37 Source/core/html/HTMLTablePartElement.h HTMLTablePartElement(const QualifiedName& tagName, Document& document) tagName 38 Source/core/html/HTMLTablePartElement.h : HTMLElement(tagName, document) tagName 40 Source/core/html/HTMLTableSectionElement.cpp inline HTMLTableSectionElement::HTMLTableSectionElement(const QualifiedName& tagName, Document& document) tagName 41 Source/core/html/HTMLTableSectionElement.cpp : HTMLTablePartElement(tagName, document) tagName 46 Source/core/html/HTMLTableSectionElement.cpp PassRefPtr<HTMLTableSectionElement> HTMLTableSectionElement::create(const QualifiedName& tagName, Document& document) tagName 48 Source/core/html/HTMLTableSectionElement.cpp return adoptRef(new HTMLTableSectionElement(tagName, document)); tagName 47 Source/core/html/HTMLTableSectionElement.h HTMLTableSectionElement(const QualifiedName& tagName, Document&); tagName 53 Source/core/html/HTMLTextFormControlElement.cpp HTMLTextFormControlElement::HTMLTextFormControlElement(const QualifiedName& tagName, Document& doc, HTMLFormElement* form) tagName 54 Source/core/html/HTMLTextFormControlElement.cpp : HTMLFormControlElementWithState(tagName, doc, form) tagName 39 Source/core/html/HTMLUnknownElement.h static PassRefPtr<HTMLUnknownElement> create(const QualifiedName& tagName, Document& document) tagName 41 Source/core/html/HTMLUnknownElement.h return adoptRef(new HTMLUnknownElement(tagName, document)); tagName 47 Source/core/html/HTMLUnknownElement.h HTMLUnknownElement(const QualifiedName& tagName, Document& document) tagName 48 Source/core/html/HTMLUnknownElement.h : HTMLElement(tagName, document) tagName 135 Source/core/html/HTMLViewSourceDocument.cpp AtomicString tagName(token.name()); tagName 153 Source/core/html/HTMLViewSourceDocument.cpp if (tagName == baseTag && name == hrefAttr) tagName 159 Source/core/html/HTMLViewSourceDocument.cpp index = addRange(source, index, iter->valueRange.end - token.startIndex(), "webkit-html-attribute-value", isLink, tagName == aTag, value); tagName 33 Source/core/html/LabelableElement.cpp LabelableElement::LabelableElement(const QualifiedName& tagName, Document& document) tagName 34 Source/core/html/LabelableElement.cpp : HTMLElement(tagName, document) tagName 47 Source/core/html/LabelableElement.h LabelableElement(const QualifiedName& tagName, Document&); tagName 128 Source/core/html/parser/AtomicHTMLToken.h if (StringImpl* tagName = lookupHTMLTag(token.name().data(), token.name().size())) tagName 129 Source/core/html/parser/AtomicHTMLToken.h m_name = AtomicString(tagName); tagName 68 Source/core/html/parser/CSSPreloadScanner.cpp void CSSPreloadScanner::scan(const String& tagName, const SegmentedString& source, PreloadRequestStream& requests) tagName 70 Source/core/html/parser/CSSPreloadScanner.cpp if (tagName.is8Bit()) { tagName 71 Source/core/html/parser/CSSPreloadScanner.cpp const LChar* begin = tagName.characters8(); tagName 72 Source/core/html/parser/CSSPreloadScanner.cpp scanCommon(begin, begin + tagName.length(), source, requests); tagName 75 Source/core/html/parser/CSSPreloadScanner.cpp const UChar* begin = tagName.characters16(); tagName 76 Source/core/html/parser/CSSPreloadScanner.cpp scanCommon(begin, begin + tagName.length(), source, requests); tagName 723 Source/core/html/parser/HTMLConstructionSite.cpp QualifiedName tagName(nullAtom, token->name(), namespaceURI); tagName 724 Source/core/html/parser/HTMLConstructionSite.cpp RefPtr<Element> element = ownerDocumentForCurrentNode().createElement(tagName, true); tagName 797 Source/core/html/parser/HTMLConstructionSite.cpp void HTMLConstructionSite::generateImpliedEndTagsWithExclusion(const AtomicString& tagName) tagName 799 Source/core/html/parser/HTMLConstructionSite.cpp while (hasImpliedEndTag(currentStackItem()) && !currentStackItem()->matchesHTMLTag(tagName)) tagName 162 Source/core/html/parser/HTMLConstructionSite.h void generateImpliedEndTagsWithExclusion(const AtomicString& tagName); tagName 213 Source/core/html/parser/HTMLElementStack.cpp void HTMLElementStack::popUntil(const AtomicString& tagName) tagName 215 Source/core/html/parser/HTMLElementStack.cpp while (!topStackItem()->matchesHTMLTag(tagName)) { tagName 221 Source/core/html/parser/HTMLElementStack.cpp void HTMLElementStack::popUntilPopped(const AtomicString& tagName) tagName 223 Source/core/html/parser/HTMLElementStack.cpp popUntil(tagName); tagName 421 Source/core/html/parser/HTMLElementStack.cpp HTMLElementStack::ElementRecord* HTMLElementStack::topmost(const AtomicString& tagName) const tagName 424 Source/core/html/parser/HTMLElementStack.cpp if (pos->stackItem()->matchesHTMLTag(tagName)) tagName 435 Source/core/html/parser/HTMLElementStack.cpp bool HTMLElementStack::contains(const AtomicString& tagName) const tagName 437 Source/core/html/parser/HTMLElementStack.cpp return !!topmost(tagName); tagName 485 Source/core/html/parser/HTMLElementStack.cpp bool HTMLElementStack::inScope(const QualifiedName& tagName) const tagName 487 Source/core/html/parser/HTMLElementStack.cpp return inScope(tagName.localName()); tagName 495 Source/core/html/parser/HTMLElementStack.cpp bool HTMLElementStack::inListItemScope(const QualifiedName& tagName) const tagName 497 Source/core/html/parser/HTMLElementStack.cpp return inListItemScope(tagName.localName()); tagName 505 Source/core/html/parser/HTMLElementStack.cpp bool HTMLElementStack::inTableScope(const QualifiedName& tagName) const tagName 507 Source/core/html/parser/HTMLElementStack.cpp return inTableScope(tagName.localName()); tagName 515 Source/core/html/parser/HTMLElementStack.cpp bool HTMLElementStack::inButtonScope(const QualifiedName& tagName) const tagName 517 Source/core/html/parser/HTMLElementStack.cpp return inButtonScope(tagName.localName()); tagName 525 Source/core/html/parser/HTMLElementStack.cpp bool HTMLElementStack::inSelectScope(const QualifiedName& tagName) const tagName 527 Source/core/html/parser/HTMLElementStack.cpp return inSelectScope(tagName.localName()); tagName 104 Source/core/html/parser/HTMLElementStack.h ElementRecord* topmost(const AtomicString& tagName) const; tagName 115 Source/core/html/parser/HTMLElementStack.h void popUntil(const AtomicString& tagName); tagName 117 Source/core/html/parser/HTMLElementStack.h void popUntilPopped(const AtomicString& tagName); tagName 118 Source/core/html/parser/HTMLElementStack.h void popUntilPopped(const QualifiedName& tagName) { popUntilPopped(tagName.localName()); } tagName 137 Source/core/html/parser/HTMLElementStack.h bool contains(const AtomicString& tagName) const; tagName 140 Source/core/html/parser/HTMLElementStack.h bool inScope(const AtomicString& tagName) const; tagName 142 Source/core/html/parser/HTMLElementStack.h bool inListItemScope(const AtomicString& tagName) const; tagName 144 Source/core/html/parser/HTMLElementStack.h bool inTableScope(const AtomicString& tagName) const; tagName 146 Source/core/html/parser/HTMLElementStack.h bool inButtonScope(const AtomicString& tagName) const; tagName 148 Source/core/html/parser/HTMLElementStack.h bool inSelectScope(const AtomicString& tagName) const; tagName 100 Source/core/html/parser/HTMLMetaCharsetParser.cpp String tagName = attemptStaticStringCreation(m_token.name(), Likely8Bit); tagName 102 Source/core/html/parser/HTMLMetaCharsetParser.cpp m_tokenizer->updateStateFor(tagName); tagName 103 Source/core/html/parser/HTMLMetaCharsetParser.cpp if (threadSafeMatch(tagName, metaTag) && processMeta()) { tagName 109 Source/core/html/parser/HTMLMetaCharsetParser.cpp if (!threadSafeMatch(tagName, scriptTag) && !threadSafeMatch(tagName, noscriptTag) tagName 110 Source/core/html/parser/HTMLMetaCharsetParser.cpp && !threadSafeMatch(tagName, styleTag) && !threadSafeMatch(tagName, linkTag) tagName 111 Source/core/html/parser/HTMLMetaCharsetParser.cpp && !threadSafeMatch(tagName, metaTag) && !threadSafeMatch(tagName, objectTag) tagName 112 Source/core/html/parser/HTMLMetaCharsetParser.cpp && !threadSafeMatch(tagName, titleTag) && !threadSafeMatch(tagName, baseTag) tagName 113 Source/core/html/parser/HTMLMetaCharsetParser.cpp && (end || !threadSafeMatch(tagName, htmlTag)) && (end || !threadSafeMatch(tagName, headTag))) { tagName 66 Source/core/html/parser/HTMLPreloadScanner.cpp AtomicString tagName(data); tagName 67 Source/core/html/parser/HTMLPreloadScanner.cpp const StringImpl* result = tagName.impl(); tagName 73 Source/core/html/parser/HTMLPreloadScanner.cpp static const StringImpl* tagImplFor(const String& tagName) tagName 75 Source/core/html/parser/HTMLPreloadScanner.cpp const StringImpl* result = tagName.impl(); tagName 134 Source/core/html/parser/HTMLStackItem.h const AtomicString& tagName = localName(); tagName 135 Source/core/html/parser/HTMLStackItem.h return tagName == HTMLNames::addressTag tagName 136 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::appletTag tagName 137 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::areaTag tagName 138 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::articleTag tagName 139 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::asideTag tagName 140 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::baseTag tagName 141 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::basefontTag tagName 142 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::bgsoundTag tagName 143 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::blockquoteTag tagName 144 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::bodyTag tagName 145 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::brTag tagName 146 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::buttonTag tagName 147 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::captionTag tagName 148 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::centerTag tagName 149 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::colTag tagName 150 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::colgroupTag tagName 151 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::commandTag tagName 152 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::ddTag tagName 153 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::detailsTag tagName 154 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::dirTag tagName 155 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::divTag tagName 156 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::dlTag tagName 157 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::dtTag tagName 158 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::embedTag tagName 159 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::fieldsetTag tagName 160 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::figcaptionTag tagName 161 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::figureTag tagName 162 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::footerTag tagName 163 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::formTag tagName 164 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::frameTag tagName 165 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::framesetTag tagName 167 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::headTag tagName 168 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::headerTag tagName 169 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::hgroupTag tagName 170 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::hrTag tagName 171 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::htmlTag tagName 172 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::iframeTag tagName 173 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::imgTag tagName 174 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::inputTag tagName 175 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::liTag tagName 176 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::linkTag tagName 177 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::listingTag tagName 178 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::mainTag tagName 179 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::marqueeTag tagName 180 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::menuTag tagName 181 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::metaTag tagName 182 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::navTag tagName 183 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::noembedTag tagName 184 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::noframesTag tagName 185 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::noscriptTag tagName 186 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::objectTag tagName 187 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::olTag tagName 188 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::pTag tagName 189 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::paramTag tagName 190 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::plaintextTag tagName 191 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::preTag tagName 192 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::scriptTag tagName 193 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::sectionTag tagName 194 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::selectTag tagName 195 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::styleTag tagName 196 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::summaryTag tagName 197 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::tableTag tagName 199 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::tdTag tagName 200 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::templateTag tagName 201 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::textareaTag tagName 202 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::thTag tagName 203 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::titleTag tagName 204 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::trTag tagName 205 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::ulTag tagName 206 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::wbrTag tagName 207 Source/core/html/parser/HTMLStackItem.h || tagName == HTMLNames::xmpTag; tagName 1600 Source/core/html/parser/HTMLTokenizer.cpp void HTMLTokenizer::updateStateFor(const String& tagName) tagName 1602 Source/core/html/parser/HTMLTokenizer.cpp if (threadSafeMatch(tagName, textareaTag) || threadSafeMatch(tagName, titleTag)) tagName 1604 Source/core/html/parser/HTMLTokenizer.cpp else if (threadSafeMatch(tagName, plaintextTag)) tagName 1606 Source/core/html/parser/HTMLTokenizer.cpp else if (threadSafeMatch(tagName, scriptTag)) tagName 1608 Source/core/html/parser/HTMLTokenizer.cpp else if (threadSafeMatch(tagName, styleTag) tagName 1609 Source/core/html/parser/HTMLTokenizer.cpp || threadSafeMatch(tagName, iframeTag) tagName 1610 Source/core/html/parser/HTMLTokenizer.cpp || threadSafeMatch(tagName, xmpTag) tagName 1611 Source/core/html/parser/HTMLTokenizer.cpp || (threadSafeMatch(tagName, noembedTag) && m_options.pluginsEnabled) tagName 1612 Source/core/html/parser/HTMLTokenizer.cpp || threadSafeMatch(tagName, noframesTag) tagName 1613 Source/core/html/parser/HTMLTokenizer.cpp || (threadSafeMatch(tagName, noscriptTag) && m_options.scriptEnabled)) tagName 177 Source/core/html/parser/HTMLTokenizer.h void updateStateFor(const String& tagName); tagName 80 Source/core/html/parser/HTMLTreeBuilder.cpp static bool isNumberedHeaderTag(const AtomicString& tagName) tagName 82 Source/core/html/parser/HTMLTreeBuilder.cpp return tagName == h1Tag tagName 83 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == h2Tag tagName 84 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == h3Tag tagName 85 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == h4Tag tagName 86 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == h5Tag tagName 87 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == h6Tag; tagName 90 Source/core/html/parser/HTMLTreeBuilder.cpp static bool isCaptionColOrColgroupTag(const AtomicString& tagName) tagName 92 Source/core/html/parser/HTMLTreeBuilder.cpp return tagName == captionTag tagName 93 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == colTag tagName 94 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == colgroupTag; tagName 97 Source/core/html/parser/HTMLTreeBuilder.cpp static bool isTableCellContextTag(const AtomicString& tagName) tagName 99 Source/core/html/parser/HTMLTreeBuilder.cpp return tagName == thTag || tagName == tdTag; tagName 102 Source/core/html/parser/HTMLTreeBuilder.cpp static bool isTableBodyContextTag(const AtomicString& tagName) tagName 104 Source/core/html/parser/HTMLTreeBuilder.cpp return tagName == tbodyTag tagName 105 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == tfootTag tagName 106 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == theadTag; tagName 109 Source/core/html/parser/HTMLTreeBuilder.cpp static bool isNonAnchorNonNobrFormattingTag(const AtomicString& tagName) tagName 111 Source/core/html/parser/HTMLTreeBuilder.cpp return tagName == bTag tagName 112 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == bigTag tagName 113 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == codeTag tagName 114 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == emTag tagName 115 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == fontTag tagName 116 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == iTag tagName 117 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == sTag tagName 118 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == smallTag tagName 119 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == strikeTag tagName 120 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == strongTag tagName 121 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == ttTag tagName 122 Source/core/html/parser/HTMLTreeBuilder.cpp || tagName == uTag; tagName 125 Source/core/html/parser/HTMLTreeBuilder.cpp static bool isNonAnchorFormattingTag(const AtomicString& tagName) tagName 127 Source/core/html/parser/HTMLTreeBuilder.cpp return tagName == nobrTag tagName 128 Source/core/html/parser/HTMLTreeBuilder.cpp || isNonAnchorNonNobrFormattingTag(tagName); tagName 132 Source/core/html/parser/HTMLTreeBuilder.cpp static bool isFormattingTag(const AtomicString& tagName) tagName 134 Source/core/html/parser/HTMLTreeBuilder.cpp return tagName == aTag || isNonAnchorFormattingTag(tagName); tagName 435 Source/core/html/parser/HTMLTreeBuilder.cpp void HTMLTreeBuilder::processFakeStartTag(const QualifiedName& tagName, const Vector<Attribute>& attributes) tagName 438 Source/core/html/parser/HTMLTreeBuilder.cpp AtomicHTMLToken fakeToken(HTMLToken::StartTag, tagName.localName(), attributes); tagName 442 Source/core/html/parser/HTMLTreeBuilder.cpp void HTMLTreeBuilder::processFakeEndTag(const AtomicString& tagName) tagName 444 Source/core/html/parser/HTMLTreeBuilder.cpp AtomicHTMLToken fakeToken(HTMLToken::EndTag, tagName); tagName 448 Source/core/html/parser/HTMLTreeBuilder.cpp void HTMLTreeBuilder::processFakeEndTag(const QualifiedName& tagName) tagName 451 Source/core/html/parser/HTMLTreeBuilder.cpp processFakeEndTag(tagName.localName()); tagName 43 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp const String& tagName = token.data(); tagName 44 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp return threadSafeMatch(tagName, bTag) tagName 45 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, bigTag) tagName 46 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, blockquoteTag) tagName 47 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, bodyTag) tagName 48 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, brTag) tagName 49 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, centerTag) tagName 50 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, codeTag) tagName 51 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, ddTag) tagName 52 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, divTag) tagName 53 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, dlTag) tagName 54 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, dtTag) tagName 55 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, emTag) tagName 56 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, embedTag) tagName 57 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, h1Tag) tagName 58 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, h2Tag) tagName 59 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, h3Tag) tagName 60 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, h4Tag) tagName 61 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, h5Tag) tagName 62 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, h6Tag) tagName 63 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, headTag) tagName 64 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, hrTag) tagName 65 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, iTag) tagName 66 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, imgTag) tagName 67 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, liTag) tagName 68 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, listingTag) tagName 69 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, menuTag) tagName 70 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, metaTag) tagName 71 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, nobrTag) tagName 72 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, olTag) tagName 73 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, pTag) tagName 74 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, preTag) tagName 75 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, rubyTag) tagName 76 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, sTag) tagName 77 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, smallTag) tagName 78 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, spanTag) tagName 79 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, strongTag) tagName 80 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, strikeTag) tagName 81 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, subTag) tagName 82 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, supTag) tagName 83 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, tableTag) tagName 84 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, ttTag) tagName 85 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, uTag) tagName 86 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, ulTag) tagName 87 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, varTag) tagName 88 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || (threadSafeMatch(tagName, fontTag) && (token.getAttributeItem(colorAttr) || token.getAttributeItem(faceAttr) || token.getAttributeItem(sizeAttr))); tagName 100 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp const String& tagName = token.data(); tagName 101 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp return threadSafeMatch(tagName, MathMLNames::miTag) tagName 102 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, MathMLNames::moTag) tagName 103 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, MathMLNames::mnTag) tagName 104 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, MathMLNames::msTag) tagName 105 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, MathMLNames::mtextTag); tagName 135 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp const String& tagName = token.data(); tagName 136 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp if (threadSafeMatch(tagName, SVGNames::svgTag)) tagName 138 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp if (threadSafeMatch(tagName, MathMLNames::mathTag)) tagName 147 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp if (threadSafeMatch(tagName, textareaTag) || threadSafeMatch(tagName, titleTag)) tagName 149 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp else if (threadSafeMatch(tagName, plaintextTag)) tagName 151 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp else if (threadSafeMatch(tagName, scriptTag)) tagName 153 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp else if (threadSafeMatch(tagName, styleTag) tagName 154 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, iframeTag) tagName 155 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, xmpTag) tagName 156 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || (threadSafeMatch(tagName, noembedTag) && m_options.pluginsEnabled) tagName 157 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || threadSafeMatch(tagName, noframesTag) tagName 158 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || (threadSafeMatch(tagName, noscriptTag) && m_options.scriptEnabled)) tagName 164 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp const String& tagName = token.data(); tagName 165 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp if ((m_namespaceStack.last() == SVG && threadSafeMatch(tagName, SVGNames::svgTag)) tagName 166 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp || (m_namespaceStack.last() == MathML && threadSafeMatch(tagName, MathMLNames::mathTag)) tagName 170 Source/core/html/parser/HTMLTreeBuilderSimulator.cpp if (threadSafeMatch(tagName, scriptTag)) { tagName 75 Source/core/html/track/vtt/VTTParser.h static inline bool isRecognizedTag(const AtomicString& tagName) tagName 77 Source/core/html/track/vtt/VTTParser.h return tagName == HTMLNames::iTag tagName 78 Source/core/html/track/vtt/VTTParser.h || tagName == HTMLNames::bTag tagName 79 Source/core/html/track/vtt/VTTParser.h || tagName == HTMLNames::uTag tagName 80 Source/core/html/track/vtt/VTTParser.h || tagName == HTMLNames::rubyTag tagName 81 Source/core/html/track/vtt/VTTParser.h || tagName == HTMLNames::rtTag; tagName 57 Source/core/html/track/vtt/VTTToken.h static VTTToken StartTag(const String& tagName, const AtomicString& classes = emptyAtom, const AtomicString& annotation = emptyAtom) tagName 59 Source/core/html/track/vtt/VTTToken.h VTTToken token(Type::StartTag, tagName); tagName 64 Source/core/html/track/vtt/VTTToken.h static VTTToken EndTag(const String& tagName) tagName 66 Source/core/html/track/vtt/VTTToken.h return VTTToken(Type::EndTag, tagName); tagName 786 Source/core/inspector/InspectorDOMAgent.cpp void InspectorDOMAgent::setNodeName(ErrorString* errorString, int nodeId, const String& tagName, int* newId) tagName 795 Source/core/inspector/InspectorDOMAgent.cpp RefPtr<Element> newElem = oldNode->document().createElement(AtomicString(tagName), exceptionState); tagName 122 Source/core/rendering/GraphicsContextAnnotator.cpp elementTag = element->tagName(); tagName 172 Source/core/rendering/RenderTreeAsText.cpp String tagName = getTagName(o.node()); tagName 175 Source/core/rendering/RenderTreeAsText.cpp tagName = emptyAtom; tagName 176 Source/core/rendering/RenderTreeAsText.cpp if (!tagName.isEmpty()) { tagName 177 Source/core/rendering/RenderTreeAsText.cpp ts << " {" << tagName << "}"; tagName 228 Source/core/rendering/svg/SVGResources.cpp const AtomicString& tagName = element->localName(); tagName 229 Source/core/rendering/svg/SVGResources.cpp if (tagName.isNull()) tagName 233 Source/core/rendering/svg/SVGResources.cpp if (clipperFilterMaskerTags().contains(tagName)) { tagName 267 Source/core/rendering/svg/SVGResources.cpp if (fillAndStrokeTags().contains(tagName)) { tagName 287 Source/core/rendering/svg/SVGResources.cpp if (chainableResourceTags().contains(tagName)) { tagName 37 Source/core/svg/SVGAnimateElement.cpp SVGAnimateElement::SVGAnimateElement(const QualifiedName& tagName, Document& document) tagName 38 Source/core/svg/SVGAnimateElement.cpp : SVGAnimationElement(tagName, document) tagName 42 Source/core/svg/SVGAnimationElement.cpp SVGAnimationElement::SVGAnimationElement(const QualifiedName& tagName, Document& document) tagName 43 Source/core/svg/SVGAnimationElement.cpp : SVGSMILElement(tagName, document) tagName 47 Source/core/svg/SVGComponentTransferFunctionElement.cpp SVGComponentTransferFunctionElement::SVGComponentTransferFunctionElement(const QualifiedName& tagName, Document& document) tagName 48 Source/core/svg/SVGComponentTransferFunctionElement.cpp : SVGElement(tagName, document) tagName 72 Source/core/svg/SVGElement.cpp SVGElement::SVGElement(const QualifiedName& tagName, Document& document, ConstructionType constructionType) tagName 73 Source/core/svg/SVGElement.cpp : Element(tagName, &document, constructionType) tagName 213 Source/core/svg/SVGElement.cpp String errorString = "<" + tagName() + "> attribute " + name.toString() + "=\"" + value + "\""; tagName 35 Source/core/svg/SVGFELightElement.cpp SVGFELightElement::SVGFELightElement(const QualifiedName& tagName, Document& document) tagName 36 Source/core/svg/SVGFELightElement.cpp : SVGElement(tagName, document) tagName 34 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp SVGFilterPrimitiveStandardAttributes::SVGFilterPrimitiveStandardAttributes(const QualifiedName& tagName, Document& document) tagName 35 Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp : SVGElement(tagName, document) tagName 42 Source/core/svg/SVGGeometryElement.cpp SVGGeometryElement::SVGGeometryElement(const QualifiedName& tagName, Document& document, ConstructionType constructionType) tagName 43 Source/core/svg/SVGGeometryElement.cpp : SVGGraphicsElement(tagName, document, constructionType) tagName 50 Source/core/svg/SVGGradientElement.cpp SVGGradientElement::SVGGradientElement(const QualifiedName& tagName, Document& document) tagName 51 Source/core/svg/SVGGradientElement.cpp : SVGElement(tagName, document) tagName 35 Source/core/svg/SVGGraphicsElement.cpp SVGGraphicsElement::SVGGraphicsElement(const QualifiedName& tagName, Document& document, ConstructionType constructionType) tagName 36 Source/core/svg/SVGGraphicsElement.cpp : SVGElement(tagName, document, constructionType) tagName 33 Source/core/svg/SVGPolyElement.cpp SVGPolyElement::SVGPolyElement(const QualifiedName& tagName, Document& document) tagName 34 Source/core/svg/SVGPolyElement.cpp : SVGGeometryElement(tagName, document) tagName 77 Source/core/svg/SVGTextContentElement.cpp SVGTextContentElement::SVGTextContentElement(const QualifiedName& tagName, Document& document) tagName 78 Source/core/svg/SVGTextContentElement.cpp : SVGGraphicsElement(tagName, document) tagName 34 Source/core/svg/SVGTextPositioningElement.cpp SVGTextPositioningElement::SVGTextPositioningElement(const QualifiedName& tagName, Document& document) tagName 35 Source/core/svg/SVGTextPositioningElement.cpp : SVGTextContentElement(tagName, document) tagName 36 Source/core/svg/SVGUnknownElement.cpp SVGUnknownElement::SVGUnknownElement(const QualifiedName& tagName, Document& document) tagName 37 Source/core/svg/SVGUnknownElement.cpp : SVGElement(tagName, document) tagName 46 Source/core/svg/SVGUnknownElement.h static PassRefPtr<SVGUnknownElement> create(const QualifiedName& tagName, Document& document) tagName 48 Source/core/svg/SVGUnknownElement.h return adoptRef(new SVGUnknownElement(tagName, document)); tagName 169 Source/core/svg/animation/SVGSMILElement.cpp SVGSMILElement::SVGSMILElement(const QualifiedName& tagName, Document& doc) tagName 170 Source/core/svg/animation/SVGSMILElement.cpp : SVGElement(tagName, doc) tagName 30 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/ContextTrackingChecker.java protected boolean hasAnnotationTag(FunctionNode node, String tagName) { tagName 33 Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/ContextTrackingChecker.java Pattern.matches("(?s).*@" + tagName + "\\b.*", getContext().getNodeText(comment)); tagName 254 Source/web/WebDocument.cpp WebElement WebDocument::createElement(const WebString& tagName) tagName 257 Source/web/WebDocument.cpp WebElement element(unwrap<Document>()->createElement(tagName, exceptionState)); tagName 61 Source/web/WebElement.cpp return constUnwrap<Element>()->tagName(); tagName 64 Source/web/WebElement.cpp bool WebElement::hasTagName(const WebString& tagName) const tagName 66 Source/web/WebElement.cpp return equalIgnoringCase(constUnwrap<Element>()->tagName(), tagName 67 Source/web/WebElement.cpp tagName.operator String()); tagName 70 Source/web/WebElement.cpp bool WebElement::hasHTMLTagName(const WebString& tagName) const tagName 78 Source/web/WebElement.cpp return HTMLNames::xhtmlNamespaceURI == element->namespaceURI() && element->localName() == String(tagName).lower(); tagName 3008 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(WebString::fromUTF8("INPUT"), frame->document().focusedElement().tagName()); tagName 3018 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(WebString::fromUTF8("TEXTAREA"), frame->document().focusedElement().tagName()); tagName 3029 Source/web/tests/WebFrameTest.cpp EXPECT_EQ(WebString::fromUTF8("DIV"), frame->document().focusedElement().tagName()); tagName 116 public/web/WebDocument.h BLINK_EXPORT WebElement createElement(const WebString& tagName); tagName 56 public/web/WebElement.h BLINK_EXPORT WebString tagName() const;