m_tagName        1192 Source/core/dom/Element.cpp     return m_tagName.toString();
m_tagName        1220 Source/core/dom/Element.cpp     m_tagName.setPrefix(prefix.isEmpty() ? AtomicString() : prefix);
m_tagName         234 Source/core/dom/Element.h     const QualifiedName& tagQName() const { return m_tagName; }
m_tagName         236 Source/core/dom/Element.h     bool hasTagName(const QualifiedName& tagName) const { return m_tagName.matches(tagName); }
m_tagName         242 Source/core/dom/Element.h     bool hasLocalName(const AtomicString& other) const { return m_tagName.localName() == other; }
m_tagName         243 Source/core/dom/Element.h     bool hasLocalName(const QualifiedName& other) const { return m_tagName.localName() == other.localName(); }
m_tagName         245 Source/core/dom/Element.h     virtual const AtomicString& localName() const OVERRIDE FINAL { return m_tagName.localName(); }
m_tagName         246 Source/core/dom/Element.h     const AtomicString& prefix() const { return m_tagName.prefix(); }
m_tagName         247 Source/core/dom/Element.h     virtual const AtomicString& namespaceURI() const OVERRIDE FINAL { return m_tagName.namespaceURI(); }
m_tagName         516 Source/core/dom/Element.h         , m_tagName(tagName)
m_tagName         635 Source/core/dom/Element.h     QualifiedName m_tagName;
m_tagName         863 Source/core/dom/Element.h     ASSERT(tagName.localName() == m_tagName.localName());
m_tagName         864 Source/core/dom/Element.h     ASSERT(tagName.namespaceURI() == m_tagName.namespaceURI());
m_tagName         865 Source/core/dom/Element.h     m_tagName = tagName;
m_tagName          47 Source/core/editing/ApplyBlockElementCommand.cpp     , m_tagName(tagName)
m_tagName         281 Source/core/editing/ApplyBlockElementCommand.cpp     RefPtr<Element> element = createHTMLElement(document(), m_tagName);
m_tagName          46 Source/core/editing/ApplyBlockElementCommand.h     const QualifiedName tagName() const { return m_tagName; }
m_tagName          54 Source/core/editing/ApplyBlockElementCommand.h     QualifiedName m_tagName;
m_tagName         161 Source/core/editing/EditingStyle.cpp     virtual bool matches(const Element* element) const { return !m_tagName || element->hasTagName(*m_tagName); }
m_tagName         173 Source/core/editing/EditingStyle.cpp     const QualifiedName* m_tagName; // We can store a pointer because HTML tag names are const global.