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

  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySet.h 39 class ImmutableStylePropertySet;
108 PassRefPtr<ImmutableStylePropertySet> immutableCopyIfNeeded() const;
150 class ImmutableStylePropertySet : public StylePropertySet {
152 ~ImmutableStylePropertySet();
153 static PassRefPtr<ImmutableStylePropertySet> create(const CSSProperty* properties, unsigned count, CSSParserMode);
163 ImmutableStylePropertySet(const CSSProperty*, unsigned count, CSSParserMode);
166 inline const CSSValue** ImmutableStylePropertySet::valueArray() const
171 inline const StylePropertyMetadata* ImmutableStylePropertySet::metadataArray() const
176 DEFINE_TYPE_CASTS(ImmutableStylePropertySet, StylePropertySet, set, !set->isMutable(), !set.isMutable());
178 inline ImmutableStylePropertySet* toImmutableStylePropertySet(const RefPtr<StylePropertySet>& set
    [all...]
StylePropertySet.cpp 47 return sizeof(ImmutableStylePropertySet) - sizeof(void*) + sizeof(CSSValue*) * count + sizeof(StylePropertyMetadata) * count;
50 PassRefPtr<ImmutableStylePropertySet> ImmutableStylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode)
54 return adoptRef(new (slot) ImmutableStylePropertySet(properties, count, cssParserMode));
57 PassRefPtr<ImmutableStylePropertySet> StylePropertySet::immutableCopyIfNeeded() const
62 return ImmutableStylePropertySet::create(mutableThis->m_propertyVector.data(), mutableThis->m_propertyVector.size(), cssParserMode());
78 ImmutableStylePropertySet::ImmutableStylePropertySet(const CSSProperty* properties, unsigned length, CSSParserMode cssParserMode)
90 ImmutableStylePropertySet::~ImmutableStylePropertySet()
    [all...]
CSSParser.h 61 class ImmutableStylePropertySet;
113 static PassRefPtr<ImmutableStylePropertySet> parseInlineStyleDeclaration(const String&, Element*);
377 PassRefPtr<ImmutableStylePropertySet> createStylePropertySet();
515 PassRefPtr<ImmutableStylePropertySet> parseDeclaration(const String&, StyleSheetContents* contextStyleSheet);
CSSParser-in.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CSSSelectorWatch.cpp 148 const RefPtr<StylePropertySet> callbackPropertySet = ImmutableStylePropertySet::create(&callbackProperty, 1, UASheetMode);

Completed in 54 milliseconds