Home
last modified time | relevance | path

Searched refs:m_tagName (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/editing/
DApplyBlockElementCommand.h46 const QualifiedName tagName() const { return m_tagName; } in tagName()
54 QualifiedName m_tagName; variable
DApplyBlockElementCommand.cpp47 , m_tagName(tagName) in ApplyBlockElementCommand()
54 , m_tagName(tagName) in ApplyBlockElementCommand()
281 RefPtr<Element> element = createHTMLElement(document(), m_tagName); in createBlockElement()
DEditingStyle.cpp161 …l bool matches(const Element* element) const { return !m_tagName || element->hasTagName(*m_tagName in matches()
173 … const QualifiedName* m_tagName; // We can store a pointer because HTML tag names are const global. member in WebCore::HTMLElementEquivalent
178 , m_tagName(0) in HTMLElementEquivalent()
184 , m_tagName(&tagName) in HTMLElementEquivalent()
191 , m_tagName(&tagName) in HTMLElementEquivalent()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DElement.h218 const QualifiedName& tagQName() const { return m_tagName; } in tagQName()
220 bool hasTagName(const QualifiedName& tagName) const { return m_tagName.matches(tagName); } in hasTagName()
226 bool hasLocalName(const AtomicString& other) const { return m_tagName.localName() == other; } in hasLocalName()
227 …bool hasLocalName(const QualifiedName& other) const { return m_tagName.localName() == other.localN… in hasLocalName()
229 virtual const AtomicString& localName() const OVERRIDE { return m_tagName.localName(); } in localName()
230 virtual const AtomicString& prefix() const OVERRIDE { return m_tagName.prefix(); } in prefix()
231 virtual const AtomicString& namespaceURI() const OVERRIDE { return m_tagName.namespaceURI(); } in namespaceURI()
530 , m_tagName(tagName) in Element()
648 QualifiedName m_tagName; variable
882 ASSERT(tagName.localName() == m_tagName.localName()); in setTagNameForCreateElementNS()
[all …]
DElement.cpp1224 return m_tagName.toString(); in nodeName()
1229 return m_tagName.toString(); in nodeNamePreservingCase()
1238 m_tagName.setPrefix(prefix.isEmpty() ? AtomicString() : prefix); in setPrefix()