/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
KubeRenderer.java | 31 void animate(); method in interface:KubeRenderer.AnimationCallback 41 mCallback.animate();
|
/development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/ |
CrossfadeActivity.java | 115 // Animate the "show" view to 100% opacity, and clear any animation listener set on 120 showView.animate() 125 // Animate the "hide" view to 0% opacity. After the animation ends, set its visibility 127 hideView.animate()
|
/external/chromium/chrome/browser/ui/cocoa/ |
gradient_button_cell.h | 85 - (void)setMouseInside:(BOOL)flag animate:(BOOL)animate;
|
browser_window_controller.h | 204 - (void)updateBookmarkBarVisibilityWithAnimation:(BOOL)animate; 348 // owner are ignored. If |animate:| is YES, then an animation may be performed, 349 // possibly after a small delay if |delay:| is YES. If |animate:| is NO, 351 // precedence with the rule that |animate:NO| has precedence over |animate:YES|, 355 withAnimation:(BOOL)animate 358 withAnimation:(BOOL)animate
|
/external/chromium/chrome/browser/ui/views/ |
dropdown_bar_host.h | 61 virtual void Show(bool animate); 63 virtual void Hide(bool animate);
|
dropdown_bar_host.cc | 82 void DropdownBarHost::Show(bool animate) { 87 if (!animate || disable_animations_during_testing_) { 109 void DropdownBarHost::Hide(bool animate) { 112 if (animate && !disable_animations_during_testing_) {
|
find_bar_host.cc | 90 void FindBarHost::Show(bool animate) { 91 DropdownBarHost::Show(animate); 94 void FindBarHost::Hide(bool animate) { 95 DropdownBarHost::Hide(animate); 277 // to do this before changing position, so that when we animate the closure
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
gradient_button_cell.h | 84 - (void)setMouseInside:(BOOL)flag animate:(BOOL)animate;
|
/external/chromium_org/chrome/browser/ui/cocoa/panels/ |
panel_window_controller_cocoa.h | 62 // Sometimes (when we animate the size of the window) we want to stop resizing 90 // |animate| controls if the bounds animation is needed or not. 92 animate:(BOOL)animate;
|
/external/chromium_org/chrome/browser/ui/views/ |
find_bar_host.h | 52 virtual void Show(bool animate) OVERRIDE; 53 virtual void Hide(bool animate) OVERRIDE;
|
dropdown_bar_host.h | 71 virtual void Show(bool animate); 73 virtual void Hide(bool animate);
|
/external/chromium_org/chrome/browser/ui/views/infobars/ |
infobar_view.h | 92 // out) as we animate open and closed. 110 virtual void PlatformSpecificShow(bool animate) OVERRIDE; 111 virtual void PlatformSpecificHide(bool animate) OVERRIDE;
|
/frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/ |
AbstractLayoutTest.java | 41 animate(v); 50 public void animate(View v) { method in class:AbstractLayoutTest
|
/frameworks/base/core/java/com/android/internal/app/ |
PlatLogoActivity.java | 115 letter.animate().cancel(); 117 letter.animate() 129 bg.animate().alpha(1f).scaleX(1f).setStartDelay(500).start(); 130 letter.animate().alpha(0f).scaleY(0.5f).scaleX(0.5f) 139 logo.animate().alpha(1f).scaleX(1f).scaleY(1f) 145 tv.animate().alpha(1f).setDuration(1000).setStartDelay(1000).start();
|
/external/chromium_org/ash/wm/ |
immersive_fullscreen_controller.cc | 197 // weird for the top-of-window views to animate and the bubble not to 198 // animate along with the top-of-window views. 274 // Animate enabling immersive mode by sliding out the top-of-window views. 500 Animate animate = (animate_reveal == ANIMATE_REVEAL_YES) ? local 502 MaybeStartReveal(animate); 509 // Always animate ending the reveal fast. 759 int ImmersiveFullscreenController::GetAnimationDuration(Animate animate) const { 760 switch (animate) { [all...] |
immersive_fullscreen_controller.h | 116 // the top-of-window views will animate according to |animate_reveal|. The 158 enum Animate { 201 // Returns the animation duration given |animate|. 202 int GetAnimationDuration(Animate animate) const; 205 // hiding them when the cursor exits the area of the top views. If |animate| 207 void MaybeStartReveal(Animate animate); 215 void MaybeEndReveal(Animate animate); [all...] |
/development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/ |
PictureDetailsActivity.java | 78 // the thumbnail to animate it from 134 // Set starting values for properties we're going to animate. These 136 // size/location, from which we'll animate it back up 147 // Animate scale and translation to go from thumbnail to full size 148 mImageView.animate().setDuration(duration). 154 // Animate the description in after the image animation 158 mTextView.animate().setDuration(duration/2). 169 // Animate a color filter to take the image from grayscale to full color. 176 // Animate a drop-shadow of the image 194 // starting size/location that we want to start from. Just animate to th [all...] |
/development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/ |
ListViewRemovalAnimation.java | 32 * and how to use animations to complete the swipe as well as to animate the other 115 // User let go - figure out whether to animate the view out, or back into place 125 // Greater than a quarter of the width - animate it out 131 // Not far enough - animate it back 137 // Animate position and alpha of swiped item 144 v.animate().setDuration(duration). 209 child.animate().setDuration(MOVE_DURATION).translationY(0); 211 child.animate().withEndAction(new Runnable() { 222 // Animate new views along with the others. The catch is that they did not 229 child.animate().setDuration(MOVE_DURATION).translationY(0) [all...] |
/packages/apps/Browser/src/com/android/browser/ |
TitleBar.java | 296 public void updateAutoLogin(Tab tab, boolean animate) { 303 mAutoLogin.updateAutoLogin(tab, animate); 306 public void showAutoLogin(boolean animate) { 314 if (animate) { 320 public void hideAutoLogin(boolean animate) { 326 if (animate) {
|
/development/samples/devbytes/animation/MultiPropertyAnimations/src/com/example/android/multipropertyanimations/ |
MultiPropertyAnimations.java | 48 * A very manual approach to animation uses a ValueAnimator to animate a fractional 71 view.animate().translationX(TX_END).translationY(TY_END);
|
/development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/ |
ToonGame.java | 76 mStarter.animate().setDuration(100); 102 mStarter.animate().scaleX(.8f).scaleY(.8f).setInterpolator(sDecelerator); 121 mStarter.animate().scaleX(1).scaleY(1).setInterpolator(sAccelerator); 139 mContainer.animate().scaleX(5).scaleY(5).alpha(0).setDuration(LONG_DURATION).
|
/external/chromium/chrome/browser/ui/cocoa/extensions/ |
browser_actions_controller.h | 88 - (void)resizeContainerAndAnimate:(BOOL)animate;
|
/external/chromium/chrome/browser/ui/gtk/infobars/ |
infobar_gtk.h | 66 void ShowArrowFor(InfoBar* other, bool animate);
|
/external/chromium/chrome/browser/ui/views/infobars/ |
infobar_container.h | 111 // Adds |infobar| to this container and calls Show() on it. |animate| is 118 bool animate,
|
/external/chromium_org/ash/wm/caption_buttons/ |
frame_caption_button_container_view.cc | 219 void FrameCaptionButtonContainerView::SetButtonsToNormal(Animate animate) { 221 animate); 230 Animate animate) { 231 FrameCaptionButton::Animate fcb_animate = (animate == ANIMATE_YES) ?
|