Lines Matching defs:MutableStylePropertySet

63     const MutableStylePropertySet* mutableThis = toMutableStylePropertySet(this);
67 MutableStylePropertySet::MutableStylePropertySet(CSSParserMode cssParserMode)
72 MutableStylePropertySet::MutableStylePropertySet(const CSSProperty* properties, unsigned length)
127 MutableStylePropertySet::MutableStylePropertySet(const StylePropertySet& other)
168 toMutableStylePropertySet(this)->~MutableStylePropertySet();
174 bool MutableStylePropertySet::removeShorthandProperty(CSSPropertyID propertyID)
190 bool MutableStylePropertySet::removeProperty(CSSPropertyID propertyID, String* returnText)
218 void MutableStylePropertySet::removePrefixedOrUnprefixedProperty(CSSPropertyID propertyID)
259 bool MutableStylePropertySet::setProperty(CSSPropertyID propertyID, const String& value, bool important, StyleSheetContents* contextStyleSheet)
271 void MutableStylePropertySet::setProperty(CSSPropertyID propertyID, PassRefPtrWillBeRawPtr<CSSValue> prpValue, bool important)
286 void MutableStylePropertySet::setProperty(const CSSProperty& property, CSSProperty* slot)
310 void MutableStylePropertySet::appendPrefixingVariantProperty(const CSSProperty& property)
320 void MutableStylePropertySet::setPrefixingVariantProperty(const CSSProperty& property)
328 bool MutableStylePropertySet::setProperty(CSSPropertyID propertyID, CSSValueID identifier, bool important)
334 void MutableStylePropertySet::parseDeclaration(const String& styleDeclaration, StyleSheetContents* contextStyleSheet)
348 void MutableStylePropertySet::addParsedProperties(const WillBeHeapVector<CSSProperty, 256>& properties)
355 void MutableStylePropertySet::addParsedProperty(const CSSProperty& property)
367 void MutableStylePropertySet::mergeAndOverrideOnConflict(const StylePropertySet* other)
423 void MutableStylePropertySet::clear()
428 PassRefPtrWillBeRawPtr<MutableStylePropertySet> StylePropertySet::copyBlockProperties() const
433 void MutableStylePropertySet::removeBlockProperties()
447 bool MutableStylePropertySet::removePropertiesInSet(const CSSPropertyID* set, unsigned length)
469 CSSProperty* MutableStylePropertySet::findCSSPropertyWithID(CSSPropertyID propertyID)
485 void MutableStylePropertySet::removeEquivalentProperties(const StylePropertySet* style)
499 void MutableStylePropertySet::removeEquivalentProperties(const CSSStyleDeclaration* style)
513 PassRefPtrWillBeRawPtr<MutableStylePropertySet> StylePropertySet::mutableCopy() const
515 return adoptRefWillBeNoop(new MutableStylePropertySet(*this));
518 PassRefPtrWillBeRawPtr<MutableStylePropertySet> StylePropertySet::copyPropertiesInSet(const Vector<CSSPropertyID>& properties) const
527 return MutableStylePropertySet::create(list.data(), list.size());
530 CSSStyleDeclaration* MutableStylePropertySet::ensureCSSStyleDeclaration()
543 int MutableStylePropertySet::findPropertyIndex(CSSPropertyID propertyID) const
560 void MutableStylePropertySet::traceAfterDispatch(Visitor* visitor)
586 PassRefPtrWillBeRawPtr<MutableStylePropertySet> MutableStylePropertySet::create(CSSParserMode cssParserMode)
588 return adoptRefWillBeNoop(new MutableStylePropertySet(cssParserMode));
591 PassRefPtrWillBeRawPtr<MutableStylePropertySet> MutableStylePropertySet::create(const CSSProperty* properties, unsigned count)
593 return adoptRefWillBeNoop(new MutableStylePropertySet(properties, count));