OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nextKeyframe
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/core/java/android/animation/
FloatKeyframeSet.java
79
final FloatKeyframe
nextKeyframe
= (FloatKeyframe) mKeyframes.get(1);
81
float nextValue =
nextKeyframe
.getFloatValue();
83
float nextFraction =
nextKeyframe
.getFraction();
84
final TimeInterpolator interpolator =
nextKeyframe
.getInterpolator();
95
final FloatKeyframe
nextKeyframe
= (FloatKeyframe) mKeyframes.get(mNumKeyframes - 1);
97
float nextValue =
nextKeyframe
.getFloatValue();
99
float nextFraction =
nextKeyframe
.getFraction();
100
final TimeInterpolator interpolator =
nextKeyframe
.getInterpolator();
112
FloatKeyframe
nextKeyframe
= (FloatKeyframe) mKeyframes.get(i);
113
if (fraction <
nextKeyframe
.getFraction())
[
all
...]
IntKeyframeSet.java
79
final IntKeyframe
nextKeyframe
= (IntKeyframe) mKeyframes.get(1);
81
int nextValue =
nextKeyframe
.getIntValue();
83
float nextFraction =
nextKeyframe
.getFraction();
84
final TimeInterpolator interpolator =
nextKeyframe
.getInterpolator();
95
final IntKeyframe
nextKeyframe
= (IntKeyframe) mKeyframes.get(mNumKeyframes - 1);
97
int nextValue =
nextKeyframe
.getIntValue();
99
float nextFraction =
nextKeyframe
.getFraction();
100
final TimeInterpolator interpolator =
nextKeyframe
.getInterpolator();
111
IntKeyframe
nextKeyframe
= (IntKeyframe) mKeyframes.get(i);
112
if (fraction <
nextKeyframe
.getFraction())
[
all
...]
KeyframeSet.java
187
final Keyframe
nextKeyframe
= mKeyframes.get(1);
188
final TimeInterpolator interpolator =
nextKeyframe
.getInterpolator();
194
(
nextKeyframe
.getFraction() - prevFraction);
196
nextKeyframe
.getValue());
211
Keyframe
nextKeyframe
= mKeyframes.get(i);
212
if (fraction <
nextKeyframe
.getFraction()) {
213
final TimeInterpolator interpolator =
nextKeyframe
.getInterpolator();
219
(
nextKeyframe
.getFraction() - prevFraction);
221
nextKeyframe
.getValue());
223
prevKeyframe =
nextKeyframe
;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/page/animation/
KeyframeAnimation.cpp
154
const KeyframeValue&
nextKeyframe
= m_keyframes[nextIndex];
157
toStyle =
nextKeyframe
.style();
160
scale = 1.0 / (
nextKeyframe
.key() - prevKeyframe.key());
Completed in 385 milliseconds