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

1 2 3 4 5 67 8 91011>>

  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_gtk.h 25 #include "ui/base/animation/animation.h"
26 #include "ui/base/animation/animation_delegate.h"
27 #include "ui/base/animation/slide_animation.h"
95 // Returns true if the bookmark bar is showing an animation.
102 virtual void AnimationProgressed(const ui::Animation* animation);
103 virtual void AnimationEnded(const ui::Animation* animation);
116 const ui::Animation* animation() { return &slide_animation_; function in class:BookmarkBarGtk
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
location_bar_view_gtk.h 32 #include "ui/base/animation/slide_animation.h"
161 virtual void AnimationProgressed(const ui::Animation* animation);
162 virtual void AnimationEnded(const ui::Animation* animation);
163 virtual void AnimationCanceled(const ui::Animation* animation);
custom_button.h 16 #include "ui/base/animation/animation_delegate.h"
17 #include "ui/base/animation/slide_animation.h"
115 virtual void AnimationProgressed(const ui::Animation* animation);
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_renderer_gtk.h 19 #include "ui/base/animation/animation_delegate.h"
42 // Possible animation states.
69 // Advance the loading animation to the next frame, or hide the animation if
98 // Current state of the animation.
101 // The current index into the Animation image strip.
169 // Advance the loading animation to the next frame, or hide the animation if
220 // Start/stop the mini-tab title animation.
295 virtual void AnimationProgressed(const ui::Animation* animation)
    [all...]
dragged_tab_gtk.cc 145 void DraggedTabGtk::AnimationProgressed(const ui::Animation* animation) {
148 static_cast<int>(delta_x * animation->GetCurrentValue());
153 void DraggedTabGtk::AnimationEnded(const ui::Animation* animation) {
157 void DraggedTabGtk::AnimationCanceled(const ui::Animation* animation) {
158 AnimationEnded(animation);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
AlphaLayersActivity.java 27 import android.view.animation.AlphaAnimation;
28 import android.view.animation.Animation;
47 a.setRepeatCount(Animation.INFINITE);
48 a.setRepeatMode(Animation.REVERSE);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ViewGroupTest.java 6 import android.view.animation.Animation;
7 import android.view.animation.Animation.AnimationListener;
75 public void onAnimationEnd(Animation a) { }
78 public void onAnimationRepeat(Animation a) { }
81 public void onAnimationStart(Animation a) { }
ViewTest.java 10 import android.view.animation.Animation;
218 Animation anim = new TestAnimation();
225 Animation anim = new TestAnimation();
382 private static class TestAnimation extends Animation {
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 274 // of being encrypted we show the encrypted boot animation.
409 Animation animation; local
422 animation.width = width;
423 animation.height = height;
424 animation.fps = fps;
428 Animation::Part part;
433 animation.parts.add(part);
440 const size_t pcount = animation.parts.size();
450 if (path == animation.parts[j].path)
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_edit_view_gtk.h 23 #include "ui/base/animation/animation_delegate.h"
170 virtual void AnimationEnded(const ui::Animation* animation);
171 virtual void AnimationProgressed(const ui::Animation* animation);
172 virtual void AnimationCanceled(const ui::Animation* animation);
177 // the animation state.
369 // Stop showing the instant suggest auto-commit animation.
395 // Animation from instant suggest (faded text) to autocomplete (selecte
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimationFactory.java 32 package com.jme3.animation;
40 * A convenience class to easily setup a spatial keyframed animation
47 * - call the buildAnimation() method that will retruna new Animation<br>
48 * - add the generated Animation to any existing AnimationControl<br>
106 * Name of the animation
114 * Animation duration in seconds
126 * Time array for this animation
130 * Translation array for this animation
134 * rotation array for this animation
138 * scales array for this animation
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
View_AnimationTest.java 23 import android.view.animation.Animation;
24 import android.view.animation.TranslateAnimation;
25 import android.view.animation.cts.AnimationTestUtils;
56 // set null animation
72 // start null animation
75 fail("did not throw NullPointerException when start null animation");
  /external/chromium/chrome/browser/chromeos/status/
network_dropdown_button.cc 51 const ui::Animation* animation) {
52 if (animation == &animation_connecting_) {
57 MenuButton::AnimationProgressed(animation);
  /external/chromium/chrome/browser/ui/gtk/download/
download_item_gtk.h 20 #include "ui/base/animation/animation_delegate.h"
21 #include "ui/base/animation/slide_animation.h"
55 virtual void AnimationProgressed(const ui::Animation* animation);
78 // Functions for controlling the progress animation.
160 // animation.
186 // The widget that contains the animation progress and the file's icon
187 // (as well as the complete animation).
210 // The animation when this item is first added to the shelf.
213 // Progress animation
    [all...]
  /external/chromium/chrome/browser/ui/views/autocomplete/
autocomplete_popup_contents_view.h 13 #include "ui/base/animation/animation_delegate.h"
14 #include "ui/base/animation/slide_animation.h"
70 virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
178 // The popup sizes vertically using an animation when the popup is getting
  /external/chromium/chrome/browser/ui/views/infobars/
translate_infobar_base.cc 14 #include "ui/base/animation/slide_animation.h"
62 TranslateInfoBarDelegate::BackgroundAnimationType animation = local
64 if (animation == TranslateInfoBarDelegate::NORMAL_TO_ERROR) {
66 } else if (animation == TranslateInfoBarDelegate::ERROR_TO_NORMAL) {
67 // Hide() runs the animation in reverse.
114 void TranslateInfoBarBase::AnimationProgressed(const ui::Animation* animation) {
115 if (animation == background_color_animation_.get())
118 InfoBarView::AnimationProgressed(animation);
128 // Draw the background into an offscreen buffer with alpha value per animation
    [all...]
  /external/chromium/chrome/browser/ui/views/notifications/
balloon_view.h 17 #include "ui/base/animation/animation_delegate.h"
90 virtual void AnimationProgressed(const ui::Animation* animation) OVERRIDE;
157 // An animation to move the balloon on the screen as its position changes.
  /external/chromium/chrome/browser/ui/views/tabs/
base_tab.cc 21 #include "ui/base/animation/animation_container.h"
22 #include "ui/base/animation/slide_animation.h"
23 #include "ui/base/animation/throb_animation.h"
108 // A custom animation subclass to manage the favicon crash animation.
118 // ui::Animation overrides:
134 virtual void AnimationCanceled(const ui::Animation* animation) {
170 // Disable animation so that the red danger sign shows up immediately
204 // the crashed animation at all if the process was killed an
    [all...]
base_tab_strip.cc 20 // Animation delegate used when a dragged tab is released. When done sets the
28 virtual void AnimationEnded(const ui::Animation* animation) {
32 virtual void AnimationCanceled(const ui::Animation* animation) {
54 virtual void AnimationEnded(const ui::Animation* animation) {
58 virtual void AnimationCanceled(const ui::Animation* animation) {
62 // . The drag was completed before the animation complete
    [all...]
  /external/webkit/Source/WebCore/page/animation/
KeyframeAnimation.cpp 46 KeyframeAnimation::KeyframeAnimation(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compAnim, RenderStyle* unanimatedStyle)
47 : AnimationBase(animation, renderer, compAnim)
48 , m_keyframes(renderer, animation->name())
72 if (m_animation->duration() && m_animation->iterationCount() != Animation::IterationCountInfinite)
77 // FIXME: startTime can be before the current animation "frame" time. This is to sync with the frame time
87 if (m_animation->iterationCount() != Animation::IterationCountInfinite)
91 bool reversing = (m_animation->direction() == Animation::AnimationDirectionAlternate) && (iteration & 1);
140 // We get the timing function from the first animation, because we've synthesized a RenderStyle for each keyframe.
141 timingFunction = fromStyle->animations()->animation(0)->timingFunction().get()
    [all...]
  /frameworks/base/core/java/android/view/animation/
RotateAnimation.java 17 package android.view.animation;
24 * An animation that controls the rotation of an object. This rotation takes
30 public class RotateAnimation extends Animation {
78 * animation.
80 * @param toDegrees Rotation offset to apply at the end of the animation.
93 * animation.
95 * @param toDegrees Rotation offset to apply at the end of the animation.
119 * animation.
121 * @param toDegrees Rotation offset to apply at the end of the animation.
124 * Animation.ABSOLUTE, Animation.RELATIVE_TO_SELF, o
    [all...]
  /frameworks/support/v4/java/android/support/v4/app/
FragmentManager.java 30 import android.view.animation.AccelerateInterpolator;
31 import android.view.animation.AlphaAnimation;
32 import android.view.animation.Animation;
33 import android.view.animation.AnimationSet;
34 import android.view.animation.AnimationUtils;
35 import android.view.animation.DecelerateInterpolator;
36 import android.view.animation.Interpolator;
37 import android.view.animation.ScaleAnimation;
38 import android.view.animation.Animation.AnimationListener
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
AccelerateInterpolatorTest.java 17 package android.view.animation.cts;
28 import android.view.animation.AccelerateInterpolator;
29 import android.view.animation.AlphaAnimation;
30 import android.view.animation.Animation;
31 import android.view.animation.AnimationUtils;
32 import android.view.animation.Interpolator;
33 import android.view.animation.Transformation;
73 final Animation anim = AnimationUtils.loadAnimation(mActivity, R.anim.accelerate_alpha);
  /external/chromium/chrome/browser/ui/touch/frame/
touch_browser_frame_view.cc 21 #include "ui/base/animation/slide_animation.h"
155 // We don't re-layout the client view until the animation ends (see
157 // entire height during the animation.
257 void TouchBrowserFrameView::AnimationProgressed(const ui::Animation* anim) {
265 void TouchBrowserFrameView::AnimationEnded(const ui::Animation* animation) {
  /external/chromium/chrome/browser/ui/views/bookmarks/
bookmark_bar_view.h 19 #include "ui/base/animation/animation_delegate.h"
108 // layout during animation.
185 virtual void AnimationProgressed(const ui::Animation* animation);
186 virtual void AnimationEnded(const ui::Animation* animation);
519 // Animation controlling showing and hiding of the bar.

Completed in 2790 milliseconds

1 2 3 4 5 67 8 91011>>