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

  /external/webkit/WebCore/css/
CSSMutableStyleDeclaration.h 38 CSSMutableStyleDeclarationConstIterator(const CSSMutableStyleDeclaration* decl, CSSProperty* current);
54 const CSSMutableStyleDeclaration* m_decl;
58 class CSSMutableStyleDeclaration : public CSSStyleDeclaration {
60 static PassRefPtr<CSSMutableStyleDeclaration> create()
62 return adoptRef(new CSSMutableStyleDeclaration);
64 static PassRefPtr<CSSMutableStyleDeclaration> create(CSSRule* parentRule)
66 return adoptRef(new CSSMutableStyleDeclaration(parentRule));
68 static PassRefPtr<CSSMutableStyleDeclaration> create(CSSRule* parentRule, const CSSProperty* const* properties, int numProperties)
70 return adoptRef(new CSSMutableStyleDeclaration(parentRule, properties, numProperties));
72 static PassRefPtr<CSSMutableStyleDeclaration> create(const Vector<CSSProperty>& properties, unsigned variableDependentValueCount
    [all...]
CSSMutableStyleDeclaration.cpp 22 #include "CSSMutableStyleDeclaration.h"
40 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration()
50 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent)
61 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const Vector<CSSProperty>& properties, unsigned variableDependentValueCount)
75 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const CSSProperty* const * properties, int numProperties)
94 CSSMutableStyleDeclaration& CSSMutableStyleDeclaration::operator=(const CSSMutableStyleDeclaration& other
    [all...]

Completed in 156 milliseconds