OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TransformAnimationValue
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
AnimationValue.h
79
class
TransformAnimationValue
: public AnimationValue {
81
explicit
TransformAnimationValue
(double keyTime, const TransformOperations* value = 0, PassRefPtr<TimingFunction> timingFunction = 0)
87
virtual PassOwnPtr<AnimationValue> clone() const OVERRIDE { return adoptPtr(new
TransformAnimationValue
(*this)); }
AnimationTranslationUtilTest.cpp
126
values.insert(adoptPtr(new
TransformAnimationValue
(0, &operations1)));
130
values.insert(adoptPtr(new
TransformAnimationValue
(duration, &operations2)));
145
values.insert(adoptPtr(new
TransformAnimationValue
(0, &operations1)));
149
values.insert(adoptPtr(new
TransformAnimationValue
(duration, &operations2)));
163
values.insert(adoptPtr(new
TransformAnimationValue
(0, &operations1)));
167
values.insert(adoptPtr(new
TransformAnimationValue
(duration, &operations2)));
182
values.insert(adoptPtr(new
TransformAnimationValue
(0, &operations1)));
186
values.insert(adoptPtr(new
TransformAnimationValue
(duration, &operations2)));
201
values.insert(adoptPtr(new
TransformAnimationValue
(0, &operations1)));
205
values.insert(adoptPtr(new
TransformAnimationValue
(duration, &operations2)))
[
all
...]
AnimationTranslationUtil.cpp
146
bool appendKeyframeWithStandardTimingFunction<
TransformAnimationValue
, WebTransformKeyframe, WebTransformAnimationCurve>(WebTransformAnimationCurve* curve, double keyTime, const
TransformAnimationValue
* value, const
TransformAnimationValue
* lastValue, blink::WebAnimationCurve::TimingFunctionType timingFunctionType, const FloatSize& boxSize)
168
bool appendKeyframeWithCustomBezierTimingFunction<
TransformAnimationValue
, WebTransformKeyframe, WebTransformAnimationCurve>(WebTransformAnimationCurve* curve, double keyTime, const
TransformAnimationValue
* value, const
TransformAnimationValue
* lastValue, double x1, double y1, double x2, double y2, const FloatSize& boxSize)
334
return createWebAnimation<
TransformAnimationValue
, WebTransformKeyframe, WebTransformAnimationCurve>(values, animation, animationId, timeOffset, curve.get(), blink::WebAnimation::TargetPropertyTransform, FloatSize(boxSize));
/external/chromium_org/third_party/WebKit/Source/core/rendering/animation/
WebAnimationProvider.cpp
146
transformVector.insert(adoptPtr(new
TransformAnimationValue
(key, &(keyframeStyle->transform()), tf)));
184
transformVector.insert(adoptPtr(new
TransformAnimationValue
(0, &fromStyle->transform())));
185
transformVector.insert(adoptPtr(new
TransformAnimationValue
(1, &toStyle->transform())));
Completed in 46 milliseconds