Home | History | Annotate | Download | only in css

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 bool MutableStylePropertySet::setProperty(CSSPropertyID propertyID, CSSPropertyID identifier, bool important)
340 void MutableStylePropertySet::parseDeclaration(const String& styleDeclaration, StyleSheetContents* contextStyleSheet)
354 void MutableStylePropertySet::addParsedProperties(const WillBeHeapVector<CSSProperty, 256>& properties)
361 void MutableStylePropertySet::addParsedProperty(const CSSProperty& property)
373 void MutableStylePropertySet::mergeAndOverrideOnConflict(const StylePropertySet* other)
429 void MutableStylePropertySet::clear()
434 PassRefPtrWillBeRawPtr<MutableStylePropertySet> StylePropertySet::copyBlockProperties() const
439 void MutableStylePropertySet::removeBlockProperties()
453 bool MutableStylePropertySet::removePropertiesInSet(const CSSPropertyID* set, unsigned length)
475 CSSProperty* MutableStylePropertySet::findCSSPropertyWithID(CSSPropertyID propertyID)
491 void MutableStylePropertySet::removeEquivalentProperties(const StylePropertySet* style)
505 void MutableStylePropertySet::removeEquivalentProperties(const CSSStyleDeclaration* style)
519 PassRefPtrWillBeRawPtr<MutableStylePropertySet> StylePropertySet::mutableCopy() const
521 return adoptRefWillBeRefCountedGarbageCollected(new MutableStylePropertySet(*this));
524 PassRefPtrWillBeRawPtr<MutableStylePropertySet> StylePropertySet::copyPropertiesInSet(const Vector<CSSPropertyID>& properties) const
533 return MutableStylePropertySet::create(list.data(), list.size());
536 CSSStyleDeclaration* MutableStylePropertySet::ensureCSSStyleDeclaration()
549 int MutableStylePropertySet::findPropertyIndex(CSSPropertyID propertyID) const
566 void MutableStylePropertySet::traceAfterDispatch(Visitor* visitor)
592 PassRefPtrWillBeRawPtr<MutableStylePropertySet> MutableStylePropertySet::create(CSSParserMode cssParserMode)
594 return adoptRefWillBeRefCountedGarbageCollected(new MutableStylePropertySet(cssParserMode));
597 PassRefPtrWillBeRawPtr<MutableStylePropertySet> MutableStylePropertySet::create(const CSSProperty* properties, unsigned count)
599 return adoptRefWillBeRefCountedGarbageCollected(new MutableStylePropertySet(properties, count));