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

1 2 3 4 5 6 7 891011>>

  /packages/apps/LegacyCamera/src/com/android/camera/
Util.java 50 import android.view.animation.AlphaAnimation;
51 import android.view.animation.Animation;
604 Animation animation = new AlphaAnimation(0F, 1F); local
605 animation.setDuration(400);
606 view.startAnimation(animation);
612 Animation animation = new AlphaAnimation(1F, 0F);
613 animation.setDuration(400)
    [all...]
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_strip_gtk.cc 31 #include "ui/base/animation/animation_delegate.h"
32 #include "ui/base/animation/slide_animation.h"
49 // The delay between when the mouse leaves the tabstrip and the resize animation
54 // start/stop the resize animation.
114 // Possible types of animation.
155 // Retrieves the width for the Tab at the specified index if an animation is
158 TabStripGtk::TabAnimation* animation,
170 if (animation) {
171 double specified_tab_width = animation->GetWidthForTab(index);
180 virtual void AnimationProgressed(const ui::Animation* animation)
1788 TabAnimation* animation = active_animation_.get(); local
    [all...]
tab_renderer_gtk.cc 25 #include "ui/base/animation/slide_animation.h"
26 #include "ui/base/animation/throb_animation.h"
66 // Max opacity for the mini-tab title change animation.
97 // The loading animation image is a strip of states. Each state must be
175 // The waiting animation is the reverse of the loading animation, but at a
178 // animation to the other.
211 // A custom animation subclass to manage the favicon crash animation.
221 // ui::Animation overrides
    [all...]
  /external/chromium/chrome/browser/ui/views/download/
download_shelf_view.cc 22 #include "ui/base/animation/slide_animation.h"
55 // New download item animation speed in milliseconds.
227 void DownloadShelfView::AnimationProgressed(const ui::Animation *animation) {
228 if (animation == new_item_animation_.get()) {
231 } else if (animation == shelf_animation_.get()) {
233 // GetPreferredSize, where we will do our animation. In the case where the
234 // animation is hiding, we do a full resize - the fast resizing would
242 void DownloadShelfView::AnimationEnded(const ui::Animation *animation) {
    [all...]
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.cpp 167 for ( ; i < parentSize && parentList->animation(i)->is##Prop##Set(); ++i) { \
169 list->append(Animation::create()); \
170 list->animation(i)->set##Prop(parentList->animation(i)->prop()); \
175 list->animation(i)->clear##Prop(); \
179 list->append(Animation::create()); \
180 list->animation(0)->set##Prop(Animation::initialAnimation##Prop()); \
182 list->animation(0)->clear##Prop(); \
192 /* Walk each value and put it into an animation, creating new animations as needed. */
    [all...]
  /external/chromium/chrome/browser/chromeos/panels/
panel_scroller.cc 98 // Our child views changed without us knowing it. Stop the animation and mark
237 void PanelScroller::AnimationProgressed(const ui::Animation* animation) {
  /external/chromium/chrome/browser/ui/gtk/infobars/
translate_infobar_base_gtk.cc 16 #include "ui/base/animation/slide_animation.h"
35 TranslateInfoBarDelegate::BackgroundAnimationType animation = local
37 if (animation != TranslateInfoBarDelegate::NONE) {
41 if (animation == TranslateInfoBarDelegate::NORMAL_TO_ERROR) {
44 DCHECK_EQ(TranslateInfoBarDelegate::ERROR_TO_NORMAL, animation);
45 // Hide() runs the animation in reverse.
120 void TranslateInfoBarBase::AnimationProgressed(const ui::Animation* animation) {
121 DCHECK(animation == background_color_animation_.get());
122 background_error_percent_ = animation->GetCurrentValue()
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowViewGroup.java 5 import android.view.animation.Animation.AnimationListener;
  /external/webkit/Source/WebCore/page/animation/
ImplicitAnimation.cpp 43 ImplicitAnimation::ImplicitAnimation(const Animation* transition, int animatingProperty, RenderObject* renderer, CompositeAnimation* compAnim, RenderStyle* fromStyle)
68 // If we get this far and the animation is done, it means we are cleaning up a just finished animation.
77 // Run a cycle of animation.
89 // If we are running an accelerated animation, set a flag in the style which causes the style
91 // that is animating are correctly detected during the animation (e.g. when a transition
155 // If we have a keyframe animation on this property, this transition is being overridden. The keyframe
156 // animation keeps an unanimated style in case a transition starts while the keyframe animation is
212 // set the transform animation lis
    [all...]
  /frameworks/base/core/java/android/view/animation/
ScaleAnimation.java 17 package android.view.animation;
26 * An animation that controls the scale of an object. You can specify the point
30 public class ScaleAnimation extends Animation {
139 * animation
140 * @param toX Horizontal scaling factor to apply at the end of the animation
142 * animation
143 * @param toY Vertical scaling factor to apply at the end of the animation
159 * animation
160 * @param toX Horizontal scaling factor to apply at the end of the animation
162 * animation
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
StateTransitionAnimation.java 19 import android.view.animation.AccelerateInterpolator;
20 import android.view.animation.DecelerateInterpolator;
21 import android.view.animation.Interpolator;
28 public class StateTransitionAnimation extends Animation {
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp 216 // We need to notify the client (ie. the layer compositor) when the animation actually starts.
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java 19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
21 import android.animation.AnimatorSet;
22 import android.animation.ObjectAnimator;
23 import android.animation.TimeInterpolator;
69 import android.view.animation.AccelerateInterpolator;
70 import android.view.animation.Animation;
71 import android.view.animation.AnimationUtils;
72 import android.view.animation.DecelerateInterpolator
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewGroupTest.java 50 import android.view.animation.AlphaAnimation;
51 import android.view.animation.Animation;
52 import android.view.animation.LayoutAnimationController;
53 import android.view.animation.RotateAnimation;
54 import android.view.animation.Transformation;
55 import android.view.animation.Animation.AnimationListener;
289 RotateAnimation animation = new RotateAnimation(0.1f, 0.1f); local
290 LayoutAnimationController la = new LayoutAnimationController(animation);
794 RotateAnimation animation = new RotateAnimation(0.1f, 0.1f); local
1314 Animation animation = new AlphaAnimation(mContext, null); local
1605 RotateAnimation animation = new RotateAnimation(0.1f, 0.1f); local
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
custom_button.cc 195 const ui::Animation* animation) {
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.h 31 #include "Animation.h"
99 // Base class for animation values (also used for transitions). Here to
122 // Used to store one float value of an animation.
298 // Transitions are identified by a special animation name that cannot clash with a keyframe identifier.
301 // Return true if the animation is handled by the compositing system. If this returns
302 // false, the animation will be run by AnimationController.
304 virtual bool addAnimation(const KeyframeValueList&, const IntSize& /*boxSize*/, const Animation*, const String& /*animationName*/, double /*timeOffset*/) { return false; }
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_gtk.cc 57 // The duration of the fade-out animation. See |overlay_animation_|.
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 27 #include "Animation.h"
887 const Animation* anim,
    [all...]