Searched defs:AnimatableLength (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableLength.cpp32 #include "core/animation/animatable/AnimatableLength.h"
51 AnimatableLength::AnimatableLength(const Length& length, float zoom) function in class:blink::AnimatableLength
61 Length AnimatableLength::length(float zoom, ValueRange range) const
70 PassRefPtrWillBeRawPtr<AnimatableValue> AnimatableLength::interpolateTo(const AnimatableValue* value, double fraction) const
72 const AnimatableLength* length = toAnimatableLength(value);
77 bool AnimatableLength::equalTo(const AnimatableValue* value) const
79 const AnimatableLength* length = toAnimatableLength(value);
H A DAnimatableLength.h39 class AnimatableLength FINAL : public AnimatableValue {
41 static PassRefPtrWillBeRawPtr<AnimatableLength> create(const Length& length, float zoom)
43 return adoptRefWillBeNoop(new AnimatableLength(length, zoom));
51 static PassRefPtrWillBeRawPtr<AnimatableLength> create(double pixels, double percent, bool hasPixels, bool hasPercent)
53 return adoptRefWillBeNoop(new AnimatableLength(pixels, percent, hasPixels, hasPercent));
55 AnimatableLength(const Length&, float zoom);
56 AnimatableLength(double pixels, double percent, bool hasPixels, bool hasPercent) function in class:blink::FINAL
75 DEFINE_ANIMATABLE_VALUE_TYPE_CASTS(AnimatableLength, isLength());

Completed in 610 milliseconds