HomeSort by relevance Sort by last modified time
    Searched full:keyframes (Results 1 - 25 of 52) sorted by null

1 2 3

  /frameworks/base/core/java/android/animation/
KeyframeSet.java 27 * values between those keyframes for a given animation. The class internal to the animation
28 * package because it is an implementation detail of how Keyframes are stored and used.
37 ArrayList<Keyframe> mKeyframes; // only used when there are not 2 keyframes
41 public KeyframeSet(Keyframe... keyframes) {
42 mNumKeyframes = keyframes.length;
44 mKeyframes.addAll(Arrays.asList(keyframes));
52 IntKeyframe keyframes[] = new IntKeyframe[Math.max(numKeyframes,2)]; local
54 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f);
55 keyframes[1] = (IntKeyframe) Keyframe.ofInt(1f, values[0]);
57 keyframes[0] = (IntKeyframe) Keyframe.ofInt(0f, values[0])
67 FloatKeyframe keyframes[] = new FloatKeyframe[Math.max(numKeyframes,2)]; local
114 ObjectKeyframe keyframes[] = new ObjectKeyframe[Math.max(numKeyframes,2)]; local
141 ArrayList<Keyframe> keyframes = mKeyframes; local
    [all...]
Keyframe.java 56 * animation first starts, to populate placeholder keyframes with real values derived
64 * for the animation. The value for the animation between keyframes will be calculated as
65 * an interpolation between the values at those keyframes.
79 * from the target object when the animation first starts (note that this implies that keyframes
83 * for the animation. The value for the animation between keyframes will be calculated as
84 * an interpolation between the values at those keyframes.
96 * for the animation. The value for the animation between keyframes will be calculated as
97 * an interpolation between the values at those keyframes.
111 * from the target object when the animation first starts (note that this implies that keyframes
115 * for the animation. The value for the animation between keyframes will be calculated a
    [all...]
package.html 12 specify {@link android.animation.Keyframe keyframes}, or group animations to play sequentially
FloatKeyframeSet.java 25 * values between those keyframes for a given animation. The class internal to the animation
26 * package because it is an implementation detail of how Keyframes are stored and used.
39 public FloatKeyframeSet(FloatKeyframe... keyframes) {
40 super(keyframes);
50 ArrayList<Keyframe> keyframes = mKeyframes; local
54 newKeyframes[i] = (FloatKeyframe) keyframes.get(i).clone();
IntKeyframeSet.java 25 * values between those keyframes for a given animation. The class internal to the animation
26 * package because it is an implementation detail of how Keyframes are stored and used.
39 public IntKeyframeSet(IntKeyframe... keyframes) {
40 super(keyframes);
50 ArrayList<Keyframe> keyframes = mKeyframes; local
54 newKeyframes[i] = (IntKeyframe) keyframes.get(i).clone();
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/css-atrules/
webkit 3 @-webkit-keyframes
  /external/libvpx/examples/
force_keyframe.txt 5 This is an example demonstrating how to control placement of keyframes
12 Keyframes can be forced by setting the VPX_EFLAG_FORCE_KF bit of the
  /external/webkit/Source/WebCore/manual-tests/
transition-accelerated.html 22 @-webkit-keyframes slow {
31 @-webkit-keyframes fast {
animate-none.html 21 @-webkit-keyframes 'fail' {
40 @-webkit-keyframes 'sway1' {
59 @-webkit-keyframes 'sway2' {
78 @-webkit-keyframes 'sway3' {
117 @-webkit-keyframes 'sway6' {
126 @-webkit-keyframes 'fade' {
136 @-webkit-keyframes none {
animate-left.html 22 @-webkit-keyframes bounce {
animation-with-transition.html 23 @-webkit-keyframes simple {
animate-duration.html 40 @-webkit-keyframes slide {
crash-and-no-repaint-after-wake-from-sleep.html 113 @-webkit-keyframes x-spin {
119 @-webkit-keyframes y-spin {
125 @-webkit-keyframes back-y-spin {
no-repaint-after-wake-from-sleep.html 112 @-webkit-keyframes x-spin {
118 @-webkit-keyframes y-spin {
124 @-webkit-keyframes back-y-spin {
  /external/chromium/chrome/browser/resources/chromeos/
choose_mobile_network.css 30 @-webkit-keyframes spin {
  /external/chromium/chrome/browser/resources/
network_menu.css 44 @-webkit-keyframes spin {
  /external/webkit/Source/WebCore/manual-tests/animation/
transitions-and-paused-animations.html 35 @-webkit-keyframes fade {
  /external/skia/include/utils/
SkInterpolator.h 38 first keyframe. If there are no keyframes, this param
41 last keyframe. If there are no keyframes, this parameter
  /external/webkit/Source/WebCore/page/animation/
KeyframeAnimation.cpp 57 // Update the m_transformFunctionListValid flag based on whether the function lists in the keyframes match.
172 // If we have no keyframes, don't animate.
183 // FIXME: we need to be more efficient about determining which keyframes we are animating between.
410 // See if the keyframes are valid
430 // Keyframes are valid
KeyframeAnimation.h 88 // The keyframes that we are blending.
ImplicitAnimation.cpp 266 // See if the keyframes are valid
282 // Keyframes are valid
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_runner_unittest.py 57 "LayoutTests/animations/keyframes.html",
  /external/libvpx/vpx/
vpx_encoder.h 189 * This enumeration determines whether keyframes are placed automatically by
191 * SDK were implemented such that VPX_KF_FIXED meant keyframes were disabled.
199 VPX_KF_DISABLED = 0 /**< Encoder does not place keyframes. */
526 * This value indicates whether the encoder should place keyframes at a
537 * least kf_min_dist frames non-keyframes will be coded before the next
547 * A value of 0 implies all frames will be keyframes. Set kf_min_dist
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.cpp 314 // true if the rotation between any two keyframes is >= 180 degrees.
344 // See if the keyframes are valid.
361 // Keyframes are valid, fill in the list.
  /external/chromium/chrome/browser/resources/ntp/
apps.css 109 @-webkit-keyframes bounce {

Completed in 719 milliseconds

1 2 3