Home
last modified time | relevance | path

Searched refs:CSSMutableStyleDeclaration (Results 1 – 25 of 83) sorted by relevance

1234

/external/webkit/Source/WebCore/css/
DCSSMutableStyleDeclaration.h38 …CSSMutableStyleDeclarationConstIterator(const CSSMutableStyleDeclaration* decl, CSSProperty* curre…
54 const CSSMutableStyleDeclaration* m_decl;
58 class CSSMutableStyleDeclaration : public CSSStyleDeclaration {
60 static PassRefPtr<CSSMutableStyleDeclaration> create() in create()
62 return adoptRef(new CSSMutableStyleDeclaration); in create()
64 static PassRefPtr<CSSMutableStyleDeclaration> create(CSSRule* parentRule) in create()
66 return adoptRef(new CSSMutableStyleDeclaration(parentRule)); in create()
68 …static PassRefPtr<CSSMutableStyleDeclaration> create(CSSRule* parentRule, const CSSProperty* const… in create()
70 return adoptRef(new CSSMutableStyleDeclaration(parentRule, properties, numProperties)); in create()
72 static PassRefPtr<CSSMutableStyleDeclaration> create(const Vector<CSSProperty>& properties) in create()
[all …]
DCSSMutableStyleDeclaration.cpp43 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration() in CSSMutableStyleDeclaration() function in WebCore::CSSMutableStyleDeclaration
52 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent) in CSSMutableStyleDeclaration() function in WebCore::CSSMutableStyleDeclaration
62 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const Vector<CSSProperty>& … in CSSMutableStyleDeclaration() function in WebCore::CSSMutableStyleDeclaration
75 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const CSSProperty* const * … in CSSMutableStyleDeclaration() function in WebCore::CSSMutableStyleDeclaration
99 CSSMutableStyleDeclaration& CSSMutableStyleDeclaration::operator=(const CSSMutableStyleDeclaration&… in operator =()
108 String CSSMutableStyleDeclaration::getPropertyValue(int propertyID) const in getPropertyValue()
282 String CSSMutableStyleDeclaration::borderSpacingValue(const int properties[2]) const in borderSpacingValue()
298 String CSSMutableStyleDeclaration::get4Values(const int* properties) const in get4Values()
325 String CSSMutableStyleDeclaration::getLayeredShorthandValue(const int* properties, size_t size) con… in getLayeredShorthandValue()
426 String CSSMutableStyleDeclaration::getShorthandValue(const int* properties, size_t size) const in getShorthandValue()
[all …]
DWebKitCSSKeyframeRule.h35 class CSSMutableStyleDeclaration; variable
62 CSSMutableStyleDeclaration* style() const { return m_style.get(); } in style()
69 void setDeclaration(PassRefPtr<CSSMutableStyleDeclaration>);
71 CSSMutableStyleDeclaration* declaration() { return m_style.get(); } in declaration()
72 const CSSMutableStyleDeclaration* declaration() const { return m_style.get(); } in declaration()
79 RefPtr<CSSMutableStyleDeclaration> m_style;
DCSSStyleRule.h32 class CSSMutableStyleDeclaration; variable
46 CSSMutableStyleDeclaration* style() const { return m_style.get(); } in style()
54 void setDeclaration(PassRefPtr<CSSMutableStyleDeclaration>);
57 CSSMutableStyleDeclaration* declaration() { return m_style.get(); } in declaration()
72 RefPtr<CSSMutableStyleDeclaration> m_style;
DCSSFontFaceRule.h31 class CSSMutableStyleDeclaration; variable
46 CSSMutableStyleDeclaration* style() const { return m_style.get(); } in style()
50 void setDeclaration(PassRefPtr<CSSMutableStyleDeclaration>);
62 RefPtr<CSSMutableStyleDeclaration> m_style;
DCSSStyleDeclaration.h29 class CSSMutableStyleDeclaration; variable
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;
DCSSStyleDeclaration.cpp130 void CSSStyleDeclaration::diff(CSSMutableStyleDeclaration* style) const in diff()
137 CSSMutableStyleDeclaration::const_iterator end = style->end(); in diff()
138 for (CSSMutableStyleDeclaration::const_iterator it = style->begin(); it != end; ++it) { in diff()
150 PassRefPtr<CSSMutableStyleDeclaration> CSSStyleDeclaration::copyPropertiesInSet(const int* set, uns… in copyPropertiesInSet()
159 return CSSMutableStyleDeclaration::create(list); in copyPropertiesInSet()
DCSSComputedStyleDeclaration.h32 class CSSMutableStyleDeclaration; variable
56 virtual PassRefPtr<CSSMutableStyleDeclaration> copy() const;
57 virtual PassRefPtr<CSSMutableStyleDeclaration> makeMutable();
DCSSParser.h39 class CSSMutableStyleDeclaration; variable
66 …static bool parseValue(CSSMutableStyleDeclaration*, int propId, const String&, bool important, boo…
69 bool parseColor(CSSMutableStyleDeclaration*, const String&);
70 …bool parseDeclaration(CSSMutableStyleDeclaration*, const String&, RefPtr<CSSStyleSourceData>* styl…
294 bool parseValue(CSSMutableStyleDeclaration*, int propId, const String&, bool important);
DWebKitCSSKeyframesRule.cpp51 …if (CSSMutableStyleDeclaration* style = static_cast<WebKitCSSKeyframeRule*>(m_lstCSSRules->item(i)… in ~WebKitCSSKeyframesRule()
97 if (CSSMutableStyleDeclaration* style = rule->style()) in append()
DCSSStyleSelector.h39 class CSSMutableStyleDeclaration; variable
209 void addMatchedDeclaration(CSSMutableStyleDeclaration* decl);
330 Vector<CSSMutableStyleDeclaration*, 64> m_matchedDecls;
360 Vector<CSSMutableStyleDeclaration*> m_additionalAttributeStyleDecls;
/external/webkit/Source/WebCore/editing/
DEditingStyle.cpp80 static PassRefPtr<CSSMutableStyleDeclaration> copyEditingProperties(CSSStyleDeclaration* style) in copyEditingProperties()
85 static PassRefPtr<CSSMutableStyleDeclaration> editingStyleFromComputedStyle(PassRefPtr<CSSComputedS… in editingStyleFromComputedStyle()
88 return CSSMutableStyleDeclaration::create(); in editingStyleFromComputedStyle()
92 static RefPtr<CSSMutableStyleDeclaration> getPropertiesNotIn(CSSStyleDeclaration* styleWithRedundan…
229 RefPtr<CSSMutableStyleDeclaration> dummyStyle; in attributeValueAsCSSValue()
230 dummyStyle = CSSMutableStyleDeclaration::create(); in attributeValueAsCSSValue()
341 m_mutableStyle = CSSMutableStyleDeclaration::create(); in setProperty()
411 void EditingStyle::setStyle(PassRefPtr<CSSMutableStyleDeclaration> style) in setStyle()
420 void EditingStyle::overrideWithStyle(const CSSMutableStyleDeclaration* style) in overrideWithStyle()
425 m_mutableStyle = CSSMutableStyleDeclaration::create(); in overrideWithStyle()
[all …]
DEditingStyle.h46 class CSSMutableStyleDeclaration; variable
93 CSSMutableStyleDeclaration* style() { return m_mutableStyle.get(); } in style()
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);
Dmarkup.cpp136 void removeExteriorStyles(CSSMutableStyleDeclaration*);
239 static PassRefPtr<CSSMutableStyleDeclaration> styleFromMatchedRulesForElement(Element* element, boo… in styleFromMatchedRulesForElement()
241 RefPtr<CSSMutableStyleDeclaration> style = CSSMutableStyleDeclaration::create(); in styleFromMatchedRulesForElement()
246 … RefPtr<CSSMutableStyleDeclaration> s = static_cast<CSSStyleRule*>(matchedRules->item(i))->style(); in styleFromMatchedRulesForElement()
271 … RefPtr<CSSMutableStyleDeclaration> style = toHTMLElement(element)->getInlineStyleDecl()->copy(); in appendElement()
273 …RefPtr<CSSMutableStyleDeclaration> styleFromMatchedRules = styleFromMatchedRulesForElement(const_c… in appendElement()
280 … RefPtr<CSSMutableStyleDeclaration> fromComputedStyle = CSSMutableStyleDeclaration::create(); in appendElement()
283 CSSMutableStyleDeclaration::const_iterator end = style->end(); in appendElement()
284 … for (CSSMutableStyleDeclaration::const_iterator it = style->begin(); it != end; ++it) { in appendElement()
315 void StyledMarkupAccumulator::removeExteriorStyles(CSSMutableStyleDeclaration* style) in removeExteriorStyles()
[all …]
DRemoveCSSPropertyCommand.cpp45 CSSMutableStyleDeclaration* style = m_element->inlineStyleDecl(); in doApply()
53 CSSMutableStyleDeclaration* style = m_element->inlineStyleDecl(); in doUnapply()
/external/webkit/Source/WebCore/html/
DHTMLTableElement.h68 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*>&);
/external/webkit/Source/WebCore/dom/
DStyledElement.h35 class CSSMutableStyleDeclaration; variable
57 CSSMutableStyleDeclaration* inlineStyleDecl() const { return m_inlineStyleDecl.get(); } in inlineStyleDecl()
59 virtual void additionalAttributeStyleDecls(Vector<CSSMutableStyleDeclaration*>&) { } in additionalAttributeStyleDecls() argument
60 CSSMutableStyleDeclaration* getInlineStyleDecl();
96 RefPtr<CSSMutableStyleDeclaration> m_inlineStyleDecl;
DCSSMappedAttributeDeclaration.h34 class CSSMappedAttributeDeclaration : public CSSMutableStyleDeclaration {
52 : CSSMutableStyleDeclaration(parentRule) in CSSMappedAttributeDeclaration()
/external/webkit/Source/WebCore/bindings/js/
DJSCSSStyleDeclarationCustom.cpp56CSSMutableStyleDeclaration* mutableDeclaration = static_cast<CSSMutableStyleDeclaration*>(declarat… in markChildren()
57 CSSMutableStyleDeclaration::const_iterator end = mutableDeclaration->end(); in markChildren()
58 … for (CSSMutableStyleDeclaration::const_iterator it = mutableDeclaration->begin(); it != end; ++it) in markChildren()
DJSCSSFontFaceRuleCustom.cpp39 if (CSSMutableStyleDeclaration* style = static_cast<CSSFontFaceRule*>(impl())->style()) in markChildren()
DJSCSSPageRuleCustom.cpp39 if (CSSMutableStyleDeclaration* style = static_cast<CSSPageRule*>(impl())->style()) in markChildren()
DJSWebKitCSSKeyframeRuleCustom.cpp39 if (CSSMutableStyleDeclaration* style = static_cast<WebKitCSSKeyframeRule*>(impl())->style()) in markChildren()
DJSCSSStyleRuleCustom.cpp39 if (CSSMutableStyleDeclaration* style = static_cast<CSSStyleRule*>(impl())->style()) in markChildren()
/external/webkit/Source/WebCore/svg/
DSVGFontFaceElement.h31 class CSSMutableStyleDeclaration; variable
64 RefPtr<CSSMutableStyleDeclaration> m_styleDeclaration;
/external/webkit/Source/WebCore/bindings/v8/
DV8GCController.cpp298CSSMutableStyleDeclaration* cssMutableStyleDeclaration = static_cast<CSSMutableStyleDeclaration*>(… in calculateGroupId()
367CSSMutableStyleDeclaration* cssMutableStyleDeclaration = static_cast<CSSMutableStyleDeclaration*>(… in visitDOMWrapper()
370 CSSMutableStyleDeclaration::const_iterator end = cssMutableStyleDeclaration->end(); in visitDOMWrapper()
371 …for (CSSMutableStyleDeclaration::const_iterator it = cssMutableStyleDeclaration->begin(); it != en… in visitDOMWrapper()

1234