HomeSort by relevance Sort by last modified time
    Searched defs:ImmutableStylePropertySet (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySet.h 38 class ImmutableStylePropertySet;
110 PassRefPtr<ImmutableStylePropertySet> immutableCopyIfNeeded() const;
154 class ImmutableStylePropertySet : public StylePropertySet {
156 ~ImmutableStylePropertySet();
157 static PassRefPtr<ImmutableStylePropertySet> create(const CSSProperty* properties, unsigned count, CSSParserMode);
175 ImmutableStylePropertySet(const CSSProperty*, unsigned count, CSSParserMode);
178 inline const RawPtrWillBeMember<CSSValue>* ImmutableStylePropertySet::valueArray() const
183 inline const StylePropertyMetadata* ImmutableStylePropertySet::metadataArray() const
188 DEFINE_TYPE_CASTS(ImmutableStylePropertySet, StylePropertySet, set, !set->isMutable(), !set.isMutable());
190 inline ImmutableStylePropertySet* toImmutableStylePropertySet(const RefPtr<StylePropertySet>& set
    [all...]
StylePropertySet.cpp 45 return sizeof(ImmutableStylePropertySet) - sizeof(void*) + sizeof(CSSValue*) * count + sizeof(StylePropertyMetadata) * count;
48 PassRefPtr<ImmutableStylePropertySet> ImmutableStylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode)
56 return adoptRefWillBeRefCountedGarbageCollected(new (slot) ImmutableStylePropertySet(properties, count, cssParserMode));
59 PassRefPtr<ImmutableStylePropertySet> StylePropertySet::immutableCopyIfNeeded() const
64 return ImmutableStylePropertySet::create(mutableThis->m_propertyVector.data(), mutableThis->m_propertyVector.size(), cssParserMode());
80 ImmutableStylePropertySet::ImmutableStylePropertySet(const CSSProperty* properties, unsigned length, CSSParserMode cssParserMode)
94 ImmutableStylePropertySet::~ImmutableStylePropertySet()
    [all...]

Completed in 495 milliseconds