Lines Matching full:value
38 // It is an internal representation of the node value of an Attr.
39 // The actual Attr with its value as a Text child is allocated only if needed.
44 static PassRefPtr<Attribute> create(const QualifiedName& name, const AtomicString& value)
46 return adoptRef(new Attribute(name, value));
50 const AtomicString& value() const { return m_value; }
68 void setValue(const AtomicString& value) { m_value = value; }
74 Attribute(const QualifiedName& name, const AtomicString& value)
75 : m_name(name), m_value(value), m_impl(0)
78 Attribute(const AtomicString& name, const AtomicString& value)
79 : m_name(nullAtom, name, nullAtom), m_value(value), m_impl(0)