HomeSort by relevance Sort by last modified time
    Searched refs:ImmutableStylePropertySet (Results 1 - 6 of 6) 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...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
BisonCSSParser.h 61 class ImmutableStylePropertySet;
100 static PassRefPtr<ImmutableStylePropertySet> parseInlineStyleDeclaration(const String&, Element*);
175 PassRefPtr<ImmutableStylePropertySet> createStylePropertySet();
270 PassRefPtr<ImmutableStylePropertySet> parseDeclaration(const String&, StyleSheetContents* contextStyleSheet);
CSSPropertyParser.h 56 class ImmutableStylePropertySet;
BisonCSSParser-in.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CSSSelectorWatch.cpp 147 const RefPtr<StylePropertySet> callbackPropertySet = ImmutableStylePropertySet::create(&callbackProperty, 1, UASheetMode);

Completed in 1097 milliseconds