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

  /external/chromium_org/third_party/WebKit/Source/core/editing/
ApplyBlockElementCommand.h 46 const QualifiedName tagName() const { return m_tagName; }
56 QualifiedName m_tagName;
EditingStyle.cpp 161 virtual bool matches(const Element* element) const { return !m_tagName || element->hasTagName(*m_tagName); }
175 const QualifiedName* m_tagName; // We can store a pointer because HTML tag names are const global.
182 , m_tagName(0)
188 , m_tagName(&tagName)
195 , m_tagName(&tagName)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.h 238 const QualifiedName& tagQName() const { return m_tagName; }
240 bool hasTagName(const QualifiedName& tagName) const { return m_tagName.matches(tagName); }
242 // Should be called only by Document::createElementNS to fix up m_tagName immediately after construction.
246 bool hasLocalName(const AtomicString& other) const { return m_tagName.localName() == other; }
247 bool hasLocalName(const QualifiedName& other) const { return m_tagName.localName() == other.localName(); }
249 virtual const AtomicString& localName() const OVERRIDE FINAL { return m_tagName.localName(); }
250 const AtomicString& prefix() const { return m_tagName.prefix(); }
251 virtual const AtomicString& namespaceURI() const OVERRIDE FINAL { return m_tagName.namespaceURI(); }
632 QualifiedName m_tagName;
    [all...]

Completed in 78 milliseconds