Home | History | Annotate | Download | only in css

Lines Matching refs:StylePropertySet

44 class StylePropertySet : public RefCountedWillBeRefCountedGarbageCollected<StylePropertySet> {
61 PropertyReference(const StylePropertySet& propertySet, unsigned index)
89 const StylePropertySet& m_propertySet;
135 StylePropertySet(CSSParserMode cssParserMode)
141 StylePropertySet(CSSParserMode cssParserMode, unsigned immutableArraySize)
154 class ImmutableStylePropertySet : public StylePropertySet {
188 DEFINE_TYPE_CASTS(ImmutableStylePropertySet, StylePropertySet, set, !set->isMutable(), !set.isMutable());
190 inline ImmutableStylePropertySet* toImmutableStylePropertySet(const RefPtr<StylePropertySet>& set)
195 class MutableStylePropertySet : public StylePropertySet {
221 void removeEquivalentProperties(const StylePropertySet*);
224 void mergeAndOverrideOnConflict(const StylePropertySet*);
236 explicit MutableStylePropertySet(const StylePropertySet&);
243 friend class StylePropertySet;
248 DEFINE_TYPE_CASTS(MutableStylePropertySet, StylePropertySet, set, set->isMutable(), set.isMutable());
250 inline MutableStylePropertySet* toMutableStylePropertySet(const RefPtr<StylePropertySet>& set)
255 inline const StylePropertyMetadata& StylePropertySet::PropertyReference::propertyMetadata() const
262 inline const CSSValue* StylePropertySet::PropertyReference::propertyValue() const
269 inline unsigned StylePropertySet::propertyCount() const
276 inline bool StylePropertySet::isEmpty() const
282 inline void StylePropertySet::deref()
294 inline int StylePropertySet::findPropertyIndex(CSSPropertyID propertyID) const