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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/chromeos/status/
network_menu_button.cc 149 void NetworkMenuButton::AnimationProgressed(const ui::Animation* animation) {
150 if (animation == &animation_connecting_) {
156 MenuButton::AnimationProgressed(animation);
337 // Start the connecting animation if not running.
356 // Stop connecting animation since we are not connecting.
  /external/chromium/chrome/browser/ui/gtk/notifications/
balloon_view_gtk.cc 40 #include "ui/base/animation/slide_animation.h"
137 // called in the middle of an animation, it is the effective size that
138 // will result from the animation.
158 // No need to create a slide animation when this balloon is fading out.
183 void BalloonViewImpl::AnimationProgressed(const ui::Animation* animation) {
184 DCHECK_EQ(animation, animation_.get());
187 double end = animation->GetCurrentValue();
328 // window offscreen for its initial animation.
  /external/webkit/Source/WebCore/page/animation/
AnimationBase.cpp 58 // The epsilon value we pass to UnitBezier::solve given that the animation is going to run over |dur| seconds. The longer the
59 // animation, the more precision we need in the timing function result to avoid ugly discontinuities.
97 // We need to preserve the state of the valid flag at the end of the animation
161 // If we have a transform function list, use that to do a per-function animation. Otherwise do a Matrix animation
309 // This makes sure we put the object being animated into a RenderLayer during the animation
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
WindowStateAnimator.java 28 import android.view.animation.Animation;
29 import android.view.animation.AnimationUtils;
30 import android.view.animation.Transformation;
79 // Currently running animation.
82 Animation mAnimation;
87 boolean mWasAnimating; // Were we animating going into the most recent animation step?
110 // Used to save animation distances between the time they are calculated and when they are
126 // an enter animation.
185 public void setAnimation(Animation anim)
    [all...]
WindowAnimator.java 27 import android.view.animation.Animation;
42 * when no window animation is driving it. */
55 /** Time of current animation step. Reset on each iteration */
62 /** Window currently running an animation that has requested it be detached
181 final boolean wasAnimating = appAnimator.animation != null
182 && appAnimator.animation != AppWindowAnimator.sDummyAnimation;
197 final boolean wasAnimating = appAnimator.animation != null
198 && appAnimator.animation != AppWindowAnimator.sDummyAnimation;
247 "Animation started that could impact force hide: " + win)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
Util.java 38 import android.view.animation.Animation;
39 import android.view.animation.TranslateAnimation;
  /external/chromium/chrome/browser/ui/gtk/
browser_actions_toolbar_gtk.cc 650 const ui::Animation* animation) {
652 animation->GetCurrentValue();
659 void BrowserActionsToolbarGtk::AnimationEnded(const ui::Animation* animation) {
797 // animation (wherein the drag widget floats back to the start of the drag)
    [all...]
location_bar_view_gtk.cc 113 // The time, in ms, of the animation (open and close).
    [all...]
  /external/chromium/chrome/browser/ui/views/
browser_actions_container.cc 35 #include "ui/base/animation/slide_animation.h"
767 const ui::Animation* animation) {
768 DCHECK_EQ(resize_animation_.get(), animation);
774 void BrowserActionsContainer::AnimationEnded(const ui::Animation* animation) {
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
AndouKun.java 41 import android.view.animation.Animation;
42 import android.view.animation.AnimationUtils;
90 private Animation mWaitFadeAnimation = null;
448 i.putExtra("animation", AnimationPlayerActivity.ROKUDOU_ENDING);
490 int lastAnimation = intent.getIntExtra("animation", -1);
495 // on finishing animation playback, force a level change.
654 i.putExtra("animation", index);
GameObjectFactory.java 26 import com.replica.replicaisland.GenericAnimationComponent.Animation;
714 // Animation Data
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
Fragment.java 41 import android.view.animation.Animation;
174 // animation is done.
270 // If app has requested a specific animation, this is the one to use.
    [all...]
  /packages/apps/Phone/src/com/android/phone/
InCallTouchUi.java 19 import android.animation.Animator;
20 import android.animation.AnimatorListenerAdapter;
37 import android.view.animation.AlphaAnimation;
38 import android.view.animation.Animation;
39 import android.view.animation.Animation.AnimationListener;
115 // Parameters for the GlowPadView "ping" animation; see triggerPing().
302 // There's one exception: if this call is during fading-out animation for the incoming
311 + " being hidden with animation");
    [all...]
  /external/webkit/Source/WebCore/css/
CSSComputedStyleDeclaration.cpp 527 list->append(primitiveValueCache->createValue(animList->animation(i)->delay(), CSSPrimitiveValue::CSS_S));
530 list->append(primitiveValueCache->createValue(Animation::initialAnimationDelay(), CSSPrimitiveValue::CSS_S));
540 list->append(primitiveValueCache->createValue(animList->animation(i)->duration(), CSSPrimitiveValue::CSS_S));
543 list->append(primitiveValueCache->createValue(Animation::initialAnimationDuration(), CSSPrimitiveValue::CSS_S));
553 const TimingFunction* tf = animList->animation(i)->timingFunction().get();
566 RefPtr<TimingFunction> tf = Animation::initialAnimationTimingFunction();
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java 67 import android.view.animation.AlphaAnimation;
68 import android.view.animation.Animation;
151 Animation animation = new AlphaAnimation(0.0f, 1.0f); local
155 view.setAnimation(animation);
156 assertSame(animation, view.getAnimation());
163 Animation animation = new AlphaAnimation(0.0f, 1.0f); local
167 animation.initialize(100, 100, 100, 100)
178 Animation animation = new AlphaAnimation(0.0f, 1.0f); local
192 Animation animation = new AlphaAnimation(0.0f, 1.0f); local
208 final Animation animation = new AlphaAnimation(0.0f, 1.0f); local
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_gtk.cc 33 #include "ui/base/animation/multi_animation.h"
    [all...]
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.cc 321 // If we're animating and our target height changes, reset the animation.
389 const ui::Animation* animation) {
390 // We should only be running the animation when the popup is already visible.
  /external/chromium/chrome/browser/ui/views/notifications/
balloon_view.cc 25 #include "ui/base/animation/slide_animation.h"
78 // Optional animation.
221 void BalloonViewImpl::AnimationProgressed(const ui::Animation* animation) {
222 DCHECK(animation == animation_.get());
225 double e = animation->GetCurrentValue();
  /external/chromium/chrome/browser/ui/webui/
ntp_resource_cache.cc 41 #include "ui/base/animation/animation.h"
353 ui::Animation::ShouldRenderRichAnimation() ? "true" : "false";
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_gtk.cc 806 void BookmarkBarGtk::AnimationProgressed(const ui::Animation* animation) {
807 DCHECK_EQ(animation, &slide_animation_);
812 static_cast<gint>(animation->GetCurrentValue() *
818 void BookmarkBarGtk::AnimationEnded(const ui::Animation* animation) {
819 DCHECK_EQ(animation, &slide_animation_);
    [all...]
  /external/chromium/chrome/browser/ui/views/tabs/
dragged_tab_controller.cc 31 #include "ui/base/animation/animation.h"
32 #include "ui/base/animation/animation_delegate.h"
33 #include "ui/base/animation/slide_animation.h"
245 // Starts the hide animation. When the window is closed the
260 virtual void AnimationProgressed(const ui::Animation* animation) {
264 virtual void AnimationEnded(const ui::Animation* animation) {
297 // Animation for when first made visible
    [all...]
  /frameworks/base/core/java/android/view/
ViewGroup.java 19 import android.animation.LayoutTransition;
42 import android.view.animation.Animation;
43 import android.view.animation.AnimationUtils;
44 import android.view.animation.LayoutAnimationController;
45 import android.view.animation.Transformation;
159 // Layout animation
161 private Animation.AnimationListener mAnimationListener;
228 // When set, dispatchDraw() will run the layout animation and unset the flag
231 // When set, there is either no layout animation on the ViewGroup or the layou
    [all...]
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_bar_view.cc 44 #include "ui/base/animation/slide_animation.h"
749 void BookmarkBarView::AnimationProgressed(const ui::Animation* animation) {
754 void BookmarkBarView::AnimationEnded(const ui::Animation* animation) {
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.cpp     [all...]
  /external/chromium/chrome/browser/ui/gtk/download/
download_item_gtk.cc 30 #include "ui/base/animation/slide_animation.h"
57 // during animation. This number comes from the width of the images used to
61 // New download item animation speed in milliseconds.
64 // How long the 'download complete/interrupted' animation should last for.
286 // request when the animation is going on.
438 void DownloadItemGtk::AnimationProgressed(const ui::Animation* animation) {
439 if (animation == &complete_animation_) {
442 DCHECK(animation == new_item_animation_.get());
446 animation->GetCurrentValue())
    [all...]

Completed in 1196 milliseconds

1 2 3 4 5 6 7 8 91011>>