Home | History | Annotate | Download | only in animation

Lines Matching refs:prop

310     AnimationPropertyWrapperBase(CSSPropertyID prop)
311 : m_prop(prop)
358 PropertyWrapperGetter(CSSPropertyID prop, T (RenderStyle::*getter)() const)
359 : AnimationPropertyWrapperBase(prop)
382 PropertyWrapper(CSSPropertyID prop, T (RenderStyle::*getter)() const, void (RenderStyle::*setter)(T))
383 : PropertyWrapperGetter<T>(prop, getter)
400 RefCountedPropertyWrapper(CSSPropertyID prop, T* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassRefPtr<T>))
401 : PropertyWrapperGetter<T*>(prop, getter)
418 PropertyWrapperClipPath(CSSPropertyID prop, ClipPathOperation* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassRefPtr<ClipPathOperation>))
419 : RefCountedPropertyWrapper<ClipPathOperation>(prop, getter, setter)
426 PropertyWrapperShape(CSSPropertyID prop, ShapeValue* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassRefPtr<ShapeValue>))
427 : RefCountedPropertyWrapper<ShapeValue>(prop, getter, setter)
434 StyleImagePropertyWrapper(CSSPropertyID prop, StyleImage* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassRefPtr<StyleImage>))
435 : RefCountedPropertyWrapper<StyleImage>(prop, getter, setter)
456 PropertyWrapperColor(CSSPropertyID prop, StyleColor (RenderStyle::*getter)() const, void (RenderStyle::*setter)(const StyleColor&))
457 : PropertyWrapperGetter<StyleColor>(prop, getter)
543 PropertyWrapperShadow(CSSPropertyID prop, const ShadowData* (RenderStyle::*getter)() const, void (RenderStyle::*setter)(PassOwnPtr<ShadowData>, bool))
544 : AnimationPropertyWrapperBase(prop)
658 PropertyWrapperMaybeInvalidColor(CSSPropertyID prop, StyleColor (RenderStyle::*getter)() const, void (RenderStyle::*setter)(const StyleColor&))
659 : AnimationPropertyWrapperBase(prop)
705 PropertyWrapperVisitedAffectedColor(CSSPropertyID prop, StyleColor (RenderStyle::*getter)() const, void (RenderStyle::*setter)(const StyleColor&),
707 : AnimationPropertyWrapperBase(prop)
708 , m_wrapper(adoptPtr(new PropertyWrapperColor(prop, getter, setter)))
709 , m_visitedWrapper(adoptPtr(new PropertyWrapperColor(prop, visitedGetter, visitedSetter)))
712 PropertyWrapperVisitedAffectedColor(CSSPropertyID prop, MaybeInvalidColorTag, StyleColor (RenderStyle::*getter)() const, void (RenderStyle::*setter)(const StyleColor&),
714 : AnimationPropertyWrapperBase(prop)
715 , m_wrapper(adoptPtr(new PropertyWrapperMaybeInvalidColor(prop, getter, setter)))
716 , m_visitedWrapper(adoptPtr(new PropertyWrapperMaybeInvalidColor(prop, visitedGetter, visitedSetter)))
835 FillLayersPropertyWrapper(CSSPropertyID prop, LayersGetter getter, LayersAccessor accessor)
836 : AnimationPropertyWrapperBase(prop)
840 switch (prop) {
965 PropertyWrapperSVGPaint(CSSPropertyID prop, const SVGPaint::SVGPaintType& (RenderStyle::*paintTypeGetter)() const, StyleColor (RenderStyle::*getter)() const, void (RenderStyle::*setter)(const StyleColor&))
966 : AnimationPropertyWrapperBase(prop)
1223 bool CSSPropertyAnimation::blendProperties(const AnimationBase* anim, CSSPropertyID prop, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress)
1225 ASSERT(prop != CSSPropertyInvalid);
1229 AnimationPropertyWrapperBase* wrapper = wrapperForProperty(prop);
1238 bool CSSPropertyAnimation::animationOfPropertyIsAccelerated(CSSPropertyID prop)
1241 AnimationPropertyWrapperBase* wrapper = wrapperForProperty(prop);
1245 bool CSSPropertyAnimation::propertiesEqual(CSSPropertyID prop, const RenderStyle* a, const RenderStyle* b)
1249 AnimationPropertyWrapperBase* wrapper = wrapperForProperty(prop);