HomeSort by relevance Sort by last modified time
    Searched refs:Animation (Results 126 - 150 of 293) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.h 68 virtual bool addAnimation(const KeyframeValueList&, const IntSize& boxSize, const Animation*, const String& keyframesName, double timeOffset);
  /frameworks/base/cmds/bootanimation/
BootAnimation.h 59 struct Animation {
  /frameworks/base/core/java/android/view/animation/
AlphaAnimation.java 17 package android.view.animation;
24 * An animation that controls the alpha level of an object.
25 * Useful for fading things in and out. This animation ends up
29 public class AlphaAnimation extends Animation {
54 * @param fromAlpha Starting alpha value for the animation, where 1.0 means
56 * @param toAlpha Ending alpha value for the animation.
  /packages/apps/Camera/src/com/android/camera/
ActivityBase.java 35 import android.view.animation.AlphaAnimation;
36 import android.view.animation.Animation;
37 import android.view.animation.DecelerateInterpolator;
96 private Animation mCameraAppViewFadeIn;
97 private Animation mCameraAppViewFadeOut;
356 // Move the next picture with capture animation. "1" means next.
424 private class HideCameraAppView implements Animation.AnimationListener {
426 public void onAnimationEnd(Animation animation) {
    [all...]
  /packages/apps/Gallery2/src/com/android/camera/
ActivityBase.java 35 import android.view.animation.AlphaAnimation;
36 import android.view.animation.Animation;
37 import android.view.animation.DecelerateInterpolator;
97 private Animation mCameraAppViewFadeIn;
98 private Animation mCameraAppViewFadeOut;
357 // Move the next picture with capture animation. "1" means next.
425 private class HideCameraAppView implements Animation.AnimationListener {
427 public void onAnimationEnd(Animation animation) {
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
SlidingTab.java 33 import android.view.animation.AlphaAnimation;
34 import android.view.animation.Animation;
35 import android.view.animation.LinearInterpolator;
36 import android.view.animation.TranslateAnimation;
37 import android.view.animation.Animation.AnimationListener;
90 * Listener used to reset the view when the current animation completes.
93 public void onAnimationStart(Animation animation) {
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
PieRenderer.java 19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
34 import android.view.animation.Animation;
35 import android.view.animation.Animation.AnimationListener;
36 import android.view.animation.LinearInterpolator;
37 import android.view.animation.Transformation;
51 // These states are used to make sure the animation is run for at least some
61 private Animation.AnimationListener mEndAction = new EndAction()
    [all...]
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SkeletonLoader.java 34 import com.jme3.animation.Animation;
35 import com.jme3.animation.Bone;
36 import com.jme3.animation.BoneTrack;
37 import com.jme3.animation.Skeleton;
69 private Animation animation; field in class:SkeletonLoader
70 private ArrayList<Animation> animations;
122 assert elementStack.peek().equals("animation");
124 } else if (qName.equals("animation")) {
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
ScreenRotationAnimation.java 32 import android.view.animation.Animation;
33 import android.view.animation.AnimationUtils;
34 import android.view.animation.Transformation;
62 // The starting animation for the exiting and entering elements. This
63 // animation applies a transformation while the rotation is in progress.
65 Animation mStartExitAnimation;
67 Animation mStartEnterAnimation;
69 Animation mStartFrameAnimation;
72 // The finishing animation for the exiting and entering elements. Thi
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
DecelerateInterpolatorTest.java 17 package android.view.animation.cts;
28 import android.view.animation.AlphaAnimation;
29 import android.view.animation.Animation;
30 import android.view.animation.AnimationUtils;
31 import android.view.animation.DecelerateInterpolator;
32 import android.view.animation.Interpolator;
33 import android.view.animation.Transformation;
76 final Animation anim = AnimationUtils.loadAnimation(mActivity, R.anim.decelerate_alpha);
ScaleAnimationTest.java 17 package android.view.animation.cts;
28 import android.view.animation.Animation;
29 import android.view.animation.ScaleAnimation;
30 import android.view.animation.Transformation;
65 new ScaleAnimation(FROM_X, TO_X, FROM_Y, TO_Y, Animation.RELATIVE_TO_SELF, PIVOT_X,
66 Animation.RELATIVE_TO_SELF, PIVOT_Y);
  /external/chromium/chrome/browser/chromeos/
setting_level_bubble.cc 169 void SettingLevelBubble::AnimationEnded(const ui::Animation* animation) {
173 void SettingLevelBubble::AnimationProgressed(const ui::Animation* animation) {
176 ui::Tween::ValueBetween(animation->GetCurrentValue(),
  /external/chromium/chrome/browser/ui/gtk/
browser_actions_toolbar_gtk.h 21 #include "ui/base/animation/animation_delegate.h"
22 #include "ui/base/animation/slide_animation.h"
115 virtual void AnimationProgressed(const ui::Animation* animation);
116 virtual void AnimationEnded(const ui::Animation* animation);
207 // We use this animation for the smart resizing of the toolbar.
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
Constraint.java 3 import com.jme3.animation.Animation;
4 import com.jme3.animation.Bone;
5 import com.jme3.animation.BoneTrack;
6 import com.jme3.animation.Skeleton;
7 import com.jme3.animation.SpatialTrack;
8 import com.jme3.animation.Track;
89 * Bake the animation's constraints into its owner.
98 * the bone animation that affects the skeleton
101 protected BlenderTrack getTrack(Object owner, Skeleton skeleton, Animation animation) {
    [all...]
ConstraintDistLimit.java 3 import com.jme3.animation.Animation;
55 for(Animation animation : animData.anims) {
56 BlenderTrack blenderTrack = this.getTrack(owner, animData.skeleton, animation);
ConstraintLocLike.java 3 import com.jme3.animation.Animation;
70 for(Animation animation : animData.anims) {
71 BlenderTrack blenderTrack = this.getTrack(owner, animData.skeleton, animation);
ConstraintLocLimit.java 3 import com.jme3.animation.Animation;
81 for(Animation animation : animData.anims) {
82 BlenderTrack track = this.getTrack(owner, animData.skeleton, animation);
ConstraintRotLike.java 3 import com.jme3.animation.Animation;
57 for(Animation animation : animData.anims) {
58 BlenderTrack track = this.getTrack(owner, animData.skeleton, animation);
ConstraintSizeLike.java 3 import com.jme3.animation.Animation;
62 for(Animation animation : animData.anims) {
63 BlenderTrack track = this.getTrack(owner, animData.skeleton, animation);
ConstraintSizeLimit.java 3 import com.jme3.animation.Animation;
81 for(Animation animation : animData.anims) {
82 BlenderTrack track = this.getTrack(owner, animData.skeleton, animation);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
AbsActionBarView.java 28 import android.view.animation.Animation;
29 import android.view.animation.AnimationUtils;
122 Animation anim = AnimationUtils.loadAnimation(getContext(),
  /packages/apps/LegacyCamera/src/com/android/camera/
RotateDialogController.java 26 import android.view.animation.Animation;
27 import android.view.animation.AnimationUtils;
49 private Animation mFadeInAnim, mFadeOutAnim;
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
AbstractIndicatorButton.java 26 import android.view.animation.Animation;
27 import android.view.animation.AnimationUtils;
34 protected Animation mFadeIn, mFadeOut;
  /external/webkit/Source/WebCore/platform/graphics/texmap/
GraphicsLayerTextureMapper.h 86 virtual bool addAnimation(const KeyframeValueList&, const IntSize& /*boxSize*/, const Animation*, const String& /*keyframesName*/, double /*timeOffset*/) { return false; }
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
MipMapActivity.java 31 import android.view.animation.Animation;
32 import android.view.animation.ScaleAnimation;

Completed in 460 milliseconds

1 2 3 4 56 7 8 91011>>