Searched defs:RenderStyle (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderText.h137 virtual void styleWillChange(StyleDifference, const RenderStyle*) { } argument
138 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle);
/external/webkit/Source/WebCore/css/
H A DCSSStyleApplyProperty.cpp33 #include "RenderStyle.h"
87 ApplyPropertyDefault(T (RenderStyle::*getter)() const, void (RenderStyle::*setter)(T), T (*initial)())
111 T (RenderStyle::*m_getter)() const;
112 void (RenderStyle::*m_setter)(T);
119 ApplyPropertyColorBase(const Color& (RenderStyle::*getter)() const, const Color& (RenderStyle::*defaultValue)() const, void (RenderStyle::*setter)(const Color&))
144 const Color& (RenderStyle::*m_getter)() const;
145 const Color& (RenderStyle
196 ApplyPropertyFillLayer(CSSPropertyID propertyId, EFillLayerType fillLayerType, FillLayer* (RenderStyle::*accessLayers)(), const FillLayer* (RenderStyle::*layers)() const, bool (FillLayer::*test)() const, T (FillLayer::*get)() const, void (FillLayer::*set)(T), void (FillLayer::*clear)(), T (*initial)(EFillLayerType), void (CSSStyleSelector::*mapFill)(CSSPropertyID, FillLayer*, CSSValue*)) argument
[all...]
/external/webkit/Source/WebCore/page/animation/
H A DImplicitAnimation.cpp43 ImplicitAnimation::ImplicitAnimation(const Animation* transition, int animatingProperty, RenderObject* renderer, CompositeAnimation* compAnim, RenderStyle* fromStyle)
66 void ImplicitAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle) argument
80 animatedStyle = RenderStyle::clone(targetStyle);
101 void ImplicitAnimation::getAnimatedStyle(RefPtr<RenderStyle>& animatedStyle)
104 animatedStyle = RenderStyle::clone(m_toStyle.get());
201 void ImplicitAnimation::reset(RenderStyle* to)
230 bool ImplicitAnimation::isTargetPropertyEqual(int prop, const RenderStyle* targetStyle)
239 void ImplicitAnimation::blendPropertyValueInStyle(int prop, RenderStyle* currentStyl
[all...]
H A DKeyframeAnimation.cpp39 #include "RenderStyle.h"
46 KeyframeAnimation::KeyframeAnimation(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compAnim, RenderStyle* unanimatedStyle)
68 void KeyframeAnimation::fetchIntervalEndpointsForProperty(int property, const RenderStyle*& fromStyle, const RenderStyle*& toStyle, double& prog) const
140 // We get the timing function from the first animation, because we've synthesized a RenderStyle for each keyframe.
147 void KeyframeAnimation::animate(CompositeAnimation*, RenderObject*, const RenderStyle*, RenderStyle* targetStyle, RefPtr<RenderStyle>& animatedStyle) argument
160 animatedStyle = const_cast<RenderStyle*>(targetStyle);
181 animatedStyle = RenderStyle
[all...]
H A DAnimationBase.cpp49 #include "RenderStyle.h"
240 virtual bool equals(const RenderStyle* a, const RenderStyle* b) const = 0;
241 virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const = 0;
256 PropertyWrapperGetter(int prop, T (RenderStyle::*getter)() const)
262 virtual bool equals(const RenderStyle* a, const RenderStyle* b) const
274 T (RenderStyle
280 PropertyWrapper(int prop, T (RenderStyle::*getter)() const, void (RenderStyle::*setter)(T)) argument
332 PropertyWrapperShadow(int prop, const ShadowData* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(ShadowData*, bool)) argument
[all...]
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.cpp23 #include "RenderStyle.h"
43 inline RenderStyle* defaultStyle()
45 static RenderStyle* s_defaultStyle = RenderStyle::createDefaultStyle().releaseRef();
49 PassRefPtr<RenderStyle> RenderStyle::create()
51 return adoptRef(new RenderStyle());
54 PassRefPtr<RenderStyle> RenderStyle::createDefaultStyle()
56 return adoptRef(new RenderStyle(tru
72 ALWAYS_INLINE RenderStyle::RenderStyle() function in class:WebCore::RenderStyle
99 ALWAYS_INLINE RenderStyle::RenderStyle(bool) function in class:WebCore::RenderStyle
132 ALWAYS_INLINE RenderStyle::RenderStyle(const RenderStyle& o) function in class:WebCore::RenderStyle
[all...]
H A DRenderStyle.h106 typedef Vector<RefPtr<RenderStyle>, 4> PseudoStyleCache;
108 class RenderStyle: public RefCounted<RenderStyle> { class in namespace:WebCore
116 friend class RenderSVGResource; // FIXME: Needs to alter the visited state by hand. Should clean the SVG code up and move it into RenderStyle perhaps.
158 // !START SYNC!: Keep this in sync with the copy constructor in RenderStyle.cpp
309 ALWAYS_INLINE RenderStyle();
311 ALWAYS_INLINE RenderStyle(bool);
312 ALWAYS_INLINE RenderStyle(const RenderStyle&);
315 static PassRefPtr<RenderStyle> creat
[all...]
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext3D.h442 enum RenderStyle { enum in class:WebCore::GraphicsContext3D
455 static PassRefPtr<GraphicsContext3D> create(Attributes, HostWindow*, RenderStyle = RenderOffscreen);

Completed in 1510 milliseconds