OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:keyTime
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
KeyframeValueList.cpp
37
if (curValue->
keyTime
() == value->
keyTime
()) {
43
if (curValue->
keyTime
() > value->
keyTime
()) {
AnimationValue.h
45
explicit AnimationValue(double
keyTime
, PassRefPtr<TimingFunction> timingFunction = 0)
46
: m_keyTime(
keyTime
)
53
double
keyTime
() const { return m_keyTime; }
65
FloatAnimationValue(double
keyTime
, float value, PassRefPtr<TimingFunction> timingFunction = 0)
66
: AnimationValue(
keyTime
, timingFunction)
81
explicit TransformAnimationValue(double
keyTime
, const TransformOperations* value = 0, PassRefPtr<TimingFunction> timingFunction = 0)
82
: AnimationValue(
keyTime
, timingFunction)
98
explicit FilterAnimationValue(double
keyTime
, const FilterOperations* value = 0, PassRefPtr<TimingFunction> timingFunction = 0)
99
: AnimationValue(
keyTime
, timingFunction)
AnimationTranslationUtil.cpp
132
bool appendKeyframeWithStandardTimingFunction(Curve* curve, double
keyTime
, const Value* value, const Value* lastValue, blink::WebAnimationCurve::TimingFunctionType timingFunctionType, const FloatSize&)
134
curve->add(Keyframe(
keyTime
, value->value()), timingFunctionType);
139
bool appendKeyframeWithCustomBezierTimingFunction(Curve* curve, double
keyTime
, const Value* value, const Value* lastValue, double x1, double y1, double x2, double y2, const FloatSize&)
141
curve->add(Keyframe(
keyTime
, value->value()), x1, y1, x2, y2);
146
bool appendKeyframeWithStandardTimingFunction<TransformAnimationValue, WebTransformKeyframe, WebTransformAnimationCurve>(WebTransformAnimationCurve* curve, double
keyTime
, const TransformAnimationValue* value, const TransformAnimationValue* lastValue, blink::WebAnimationCurve::TimingFunctionType timingFunctionType, const FloatSize& boxSize)
161
curve->add(WebTransformKeyframe(
keyTime
, operations.release()), timingFunctionType);
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)
183
curve->add(WebTransformKeyframe(
keyTime
, operations.release()), x1, y1, x2, y2);
198
bool appendKeyframeWithStandardTimingFunction<FilterAnimationValue, WebFilterKeyframe, WebFilterAnimationCurve>(WebFilterAnimationCurve* curve, double
keyTime
, const FilterAnimationValue* value, const FilterAnimationValue* lastValue, blink::WebAnimationCurve::TimingFunctionType timingFunctionType, const FloatSize& boxSize)
209
curve->add(WebFilterKeyframe(
keyTime
, operations.release()), timingFunctionType)
[
all
...]
/development/samples/JetBoy/src/com/example/android/jetboy/
JetBoyView.java
780
long
keyTime
= inputContext == null ? 0 : ((GameEvent)inputContext).eventTime;
782
// Log.d(TAG,"
keyTime
delta = " +
783
// (System.currentTimeMillis()-
keyTime
) + ": obj = " +
803
if (!mLaserOn && System.currentTimeMillis() -
keyTime
<= 400) {
806
mLaserFireTime =
keyTime
;
[
all
...]
Completed in 42 milliseconds