HomeSort by relevance Sort by last modified time
    Searched refs:m_tagName (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
ApplyBlockElementCommand.h 46 const QualifiedName tagName() const { return m_tagName; }
54 QualifiedName m_tagName;
ApplyBlockElementCommand.cpp 47 , m_tagName(tagName)
54 , m_tagName(tagName)
281 RefPtr<Element> element = createHTMLElement(document(), m_tagName);
EditingStyle.cpp 161 virtual bool matches(const Element* element) const { return !m_tagName || element->hasTagName(*m_tagName); }
173 const QualifiedName* m_tagName; // We can store a pointer because HTML tag names are const global.
178 , m_tagName(0)
184 , m_tagName(&tagName)
191 , m_tagName(&tagName)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.h 218 const QualifiedName& tagQName() const { return m_tagName; }
220 bool hasTagName(const QualifiedName& tagName) const { return m_tagName.matches(tagName); }
222 // Should be called only by Document::createElementNS to fix up m_tagName immediately after construction.
226 bool hasLocalName(const AtomicString& other) const { return m_tagName.localName() == other; }
227 bool hasLocalName(const QualifiedName& other) const { return m_tagName.localName() == other.localName(); }
229 virtual const AtomicString& localName() const OVERRIDE { return m_tagName.localName(); }
230 virtual const AtomicString& prefix() const OVERRIDE { return m_tagName.prefix(); }
231 virtual const AtomicString& namespaceURI() const OVERRIDE { return m_tagName.namespaceURI(); }
530 , m_tagName(tagName)
648 QualifiedName m_tagName;
    [all...]
Element.cpp     [all...]

Completed in 36 milliseconds