HomeSort by relevance Sort by last modified time
    Searched refs:CSSMutableStyleDeclaration (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/webkit/Source/WebCore/css/
WebKitCSSKeyframeRule.h 35 class CSSMutableStyleDeclaration;
62 CSSMutableStyleDeclaration* style() const { return m_style.get(); }
69 void setDeclaration(PassRefPtr<CSSMutableStyleDeclaration>);
71 CSSMutableStyleDeclaration* declaration() { return m_style.get(); }
72 const CSSMutableStyleDeclaration* declaration() const { return m_style.get(); }
79 RefPtr<CSSMutableStyleDeclaration> m_style;
CSSFontFaceRule.h 31 class CSSMutableStyleDeclaration;
46 CSSMutableStyleDeclaration* style() const { return m_style.get(); }
50 void setDeclaration(PassRefPtr<CSSMutableStyleDeclaration>);
62 RefPtr<CSSMutableStyleDeclaration> m_style;
CSSStyleRule.h 32 class CSSMutableStyleDeclaration;
46 CSSMutableStyleDeclaration* style() const { return m_style.get(); }
54 void setDeclaration(PassRefPtr<CSSMutableStyleDeclaration>);
57 CSSMutableStyleDeclaration* declaration() { return m_style.get(); }
72 RefPtr<CSSMutableStyleDeclaration> m_style;
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
    [all...]
CSSStyleDeclaration.h 29 class CSSMutableStyleDeclaration;
68 virtual PassRefPtr<CSSMutableStyleDeclaration> copy() const = 0;
69 virtual PassRefPtr<CSSMutableStyleDeclaration> makeMutable() = 0;
71 void diff(CSSMutableStyleDeclaration*) const;
73 PassRefPtr<CSSMutableStyleDeclaration> copyPropertiesInSet(const int* set, unsigned length) const;
CSSMutableStyleDeclaration.cpp 23 #include "CSSMutableStyleDeclaration.h"
43 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration()
52 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent)
62 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const Vector<CSSProperty>& properties)
75 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const CSSProperty* const * properties, int numProperties)
99 CSSMutableStyleDeclaration& CSSMutableStyleDeclaration::operator=(const CSSMutableStyleDeclaration& other
    [all...]
CSSFontFaceRule.cpp 25 #include "CSSMutableStyleDeclaration.h"
38 void CSSFontFaceRule::setDeclaration(PassRefPtr<CSSMutableStyleDeclaration> style)
CSSPageRule.h 31 class CSSMutableStyleDeclaration;
CSSComputedStyleDeclaration.h 32 class CSSMutableStyleDeclaration;
56 virtual PassRefPtr<CSSMutableStyleDeclaration> copy() const;
57 virtual PassRefPtr<CSSMutableStyleDeclaration> makeMutable();
CSSStyleDeclaration.cpp 24 #include "CSSMutableStyleDeclaration.h"
131 void CSSStyleDeclaration::diff(CSSMutableStyleDeclaration* style) const
138 CSSMutableStyleDeclaration::const_iterator end = style->end();
139 for (CSSMutableStyleDeclaration::const_iterator it = style->begin(); it != end; ++it) {
151 PassRefPtr<CSSMutableStyleDeclaration> CSSStyleDeclaration::copyPropertiesInSet(const int* set, unsigned length) const
160 return CSSMutableStyleDeclaration::create(list);
  /external/webkit/Source/WebCore/dom/
CSSMappedAttributeDeclaration.h 28 #include "CSSMutableStyleDeclaration.h"
34 class CSSMappedAttributeDeclaration : public CSSMutableStyleDeclaration {
52 : CSSMutableStyleDeclaration(parentRule)
StyledElement.h 35 class CSSMutableStyleDeclaration;
57 CSSMutableStyleDeclaration* inlineStyleDecl() const { return m_inlineStyleDecl.get(); }
59 virtual void additionalAttributeStyleDecls(Vector<CSSMutableStyleDeclaration*>&) { }
60 CSSMutableStyleDeclaration* getInlineStyleDecl();
96 RefPtr<CSSMutableStyleDeclaration> m_inlineStyleDecl;
  /external/webkit/Source/WebCore/html/
HTMLTableElement.h 68 void addSharedCellDecls(Vector<CSSMutableStyleDeclaration*>&);
69 void addSharedGroupDecls(bool rows, Vector<CSSMutableStyleDeclaration*>&);
81 virtual void additionalAttributeStyleDecls(Vector<CSSMutableStyleDeclaration*>&);
85 void addSharedCellBordersDecl(Vector<CSSMutableStyleDeclaration*>&);
86 void addSharedCellPaddingDecl(Vector<CSSMutableStyleDeclaration*>&);
HTMLTableColElement.h 48 virtual void additionalAttributeStyleDecls(Vector<CSSMutableStyleDeclaration*>&);
HTMLTableCellElement.h 61 virtual void additionalAttributeStyleDecls(Vector<CSSMutableStyleDeclaration*>&);
HTMLTableSectionElement.h 60 virtual void additionalAttributeStyleDecls(Vector<CSSMutableStyleDeclaration*>&);
  /external/webkit/Source/WebCore/editing/
RemoveCSSPropertyCommand.cpp 29 #include "CSSMutableStyleDeclaration.h"
45 CSSMutableStyleDeclaration* style = m_element->inlineStyleDecl();
53 CSSMutableStyleDeclaration* style = m_element->inlineStyleDecl();
EditingStyle.h 46 class CSSMutableStyleDeclaration;
93 CSSMutableStyleDeclaration* style() { return m_mutableStyle.get(); }
96 void setStyle(PassRefPtr<CSSMutableStyleDeclaration>);
97 void overrideWithStyle(const CSSMutableStyleDeclaration*);
139 void mergeStyle(CSSMutableStyleDeclaration*);
141 RefPtr<CSSMutableStyleDeclaration> m_mutableStyle;
186 void extractTextStyles(Document*, CSSMutableStyleDeclaration*, bool shouldUseFixedFontDefaultSize);
EditingStyle.cpp 32 #include "CSSMutableStyleDeclaration.h"
80 static PassRefPtr<CSSMutableStyleDeclaration> copyEditingProperties(CSSStyleDeclaration* style)
85 static PassRefPtr<CSSMutableStyleDeclaration> editingStyleFromComputedStyle(PassRefPtr<CSSComputedStyleDeclaration> style)
88 return CSSMutableStyleDeclaration::create();
92 static RefPtr<CSSMutableStyleDeclaration> getPropertiesNotIn(CSSStyleDeclaration* styleWithRedundantProperties, CSSStyleDeclaration* baseStyle);
229 RefPtr<CSSMutableStyleDeclaration> dummyStyle;
230 dummyStyle = CSSMutableStyleDeclaration::create();
341 m_mutableStyle = CSSMutableStyleDeclaration::create();
411 void EditingStyle::setStyle(PassRefPtr<CSSMutableStyleDeclaration> style)
420 void EditingStyle::overrideWithStyle(const CSSMutableStyleDeclaration* style
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGFontFaceElement.h 31 class CSSMutableStyleDeclaration;
64 RefPtr<CSSMutableStyleDeclaration> m_styleDeclaration;
  /external/webkit/Source/WebCore/bindings/js/
JSCSSFontFaceRuleCustom.cpp 39 if (CSSMutableStyleDeclaration* style = static_cast<CSSFontFaceRule*>(impl())->style())
JSCSSPageRuleCustom.cpp 39 if (CSSMutableStyleDeclaration* style = static_cast<CSSPageRule*>(impl())->style())
JSCSSStyleRuleCustom.cpp 39 if (CSSMutableStyleDeclaration* style = static_cast<CSSStyleRule*>(impl())->style())
JSWebKitCSSKeyframeRuleCustom.cpp 39 if (CSSMutableStyleDeclaration* style = static_cast<WebKitCSSKeyframeRule*>(impl())->style())
JSCSSStyleDeclarationCustom.cpp 29 #include "CSSMutableStyleDeclaration.h"
56 CSSMutableStyleDeclaration* mutableDeclaration = static_cast<CSSMutableStyleDeclaration*>(declaration);
57 CSSMutableStyleDeclaration::const_iterator end = mutableDeclaration->end();
58 for (CSSMutableStyleDeclaration::const_iterator it = mutableDeclaration->begin(); it != end; ++it)

Completed in 186 milliseconds

1 2 3