Home | History | Annotate | Download | only in css

Lines Matching defs:MutableStylePropertySet

40 class MutableStylePropertySet;
50 // destructor. This can be removed once the MutableStylePropertySet's OwnPtr is moved
105 PassRefPtrWillBeRawPtr<MutableStylePropertySet> copyBlockProperties() const;
109 PassRefPtrWillBeRawPtr<MutableStylePropertySet> mutableCopy() const;
112 PassRefPtrWillBeRawPtr<MutableStylePropertySet> copyPropertiesInSet(const Vector<CSSPropertyID>&) const;
195 class MutableStylePropertySet : public StylePropertySet {
197 ~MutableStylePropertySet() { }
198 static PassRefPtrWillBeRawPtr<MutableStylePropertySet> create(CSSParserMode = HTMLQuirksMode);
199 static PassRefPtrWillBeRawPtr<MutableStylePropertySet> create(const CSSProperty* properties, unsigned count);
235 explicit MutableStylePropertySet(CSSParserMode);
236 explicit MutableStylePropertySet(const StylePropertySet&);
237 MutableStylePropertySet(const CSSProperty* properties, unsigned count);
248 DEFINE_TYPE_CASTS(MutableStylePropertySet, StylePropertySet, set, set->isMutable(), set.isMutable());
250 inline MutableStylePropertySet* toMutableStylePropertySet(const RefPtr<StylePropertySet>& set)