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

  /external/webkit/WebCore/editing/
SetNodeAttributeCommand.cpp 38 , m_attribute(attribute)
46 m_oldValue = m_element->getAttribute(m_attribute);
47 m_element->setAttribute(m_attribute, m_value);
52 m_element->setAttribute(m_attribute, m_oldValue);
SetNodeAttributeCommand.h 48 QualifiedName m_attribute; member in class:WebCore::SetNodeAttributeCommand
  /external/webkit/WebCore/dom/
Attr.cpp 39 , m_attribute(attribute)
43 ASSERT(!m_attribute->attr());
44 m_attribute->m_impl = this;
56 ASSERT(m_attribute->attr() == this);
57 m_attribute->m_impl = 0;
63 if (!m_attribute->value().isEmpty()) {
64 RefPtr<Text> textNode = document()->createTextNode(m_attribute->value().string());
86 return m_attribute->localName();
91 return m_attribute->namespaceURI();
96 return m_attribute->prefix()
    [all...]
Attr.h 49 const AtomicString& value() const { return m_attribute->value(); }
53 Attribute* attr() const { return m_attribute.get(); }
54 const QualifiedName& qualifiedName() const { return m_attribute->name(); }
59 CSSStyleDeclaration* style() { return m_attribute->style(); }
91 RefPtr<Attribute> m_attribute; member in class:WebCore::Attr
  /external/webkit/WebCore/css/
CSSSelector.h 202 bool hasAttribute() const { return m_match == Id || m_match == Class || (m_hasRareData && m_data.m_rareData->m_attribute != anyQName()); }
238 , m_attribute(anyQName())
250 QualifiedName m_attribute; // used for attribute selector member in struct:WebCore::CSSSelector::RareData
CSSSelector.cpp 528 return m_hasRareData ? m_data.m_rareData->m_attribute : anyQName();
535 m_data.m_rareData->m_attribute = value;
  /libcore/luni/src/main/java/org/apache/xalan/templates/
ElemLiteralResult.java 733 private AVT m_attribute; field in class:ElemLiteralResult.Attribute
740 m_attribute = avt;
770 return new Attribute(m_attribute, m_owner);
827 return m_attribute.getName();
838 String uri = m_attribute.getURI();
859 String uri = m_attribute.getURI();
883 return m_attribute.getSimpleString();
914 String uri = m_attribute.getURI();
915 String rawName = m_attribute.getRawName();
1046 return m_attribute.getName();
    [all...]

Completed in 1260 milliseconds