Lines Matching refs:CSSProperty
26 #include "CSSProperty.h"
38 CSSMutableStyleDeclarationConstIterator(const CSSMutableStyleDeclaration* decl, CSSProperty* current);
42 const CSSProperty& operator*() const { return *m_current; }
43 const CSSProperty* operator->() const { return m_current; }
55 CSSProperty* m_current;
68 static PassRefPtr<CSSMutableStyleDeclaration> create(CSSRule* parentRule, const CSSProperty* const* properties, int numProperties)
72 static PassRefPtr<CSSMutableStyleDeclaration> create(const Vector<CSSProperty>& properties, unsigned variableDependentValueCount)
120 void addParsedProperties(const CSSProperty* const *, int numProperties);
122 void addParsedProperty(const CSSProperty&);
142 CSSMutableStyleDeclaration(CSSRule* parentRule, const Vector<CSSProperty>&, unsigned variableDependentValueCount);
143 CSSMutableStyleDeclaration(CSSRule* parentRule, const CSSProperty* const *, int numProperties);
154 void setPropertyInternal(const CSSProperty&, CSSProperty* slot = 0);
157 Vector<CSSProperty>::const_iterator findPropertyWithId(int propertyId) const;
158 Vector<CSSProperty>::iterator findPropertyWithId(int propertyId);
160 Vector<CSSProperty, 4> m_properties;
172 inline CSSMutableStyleDeclarationConstIterator::CSSMutableStyleDeclarationConstIterator(const CSSMutableStyleDeclaration* decl, CSSProperty* current)