/packages/apps/Camera/src/com/android/camera/ui/ |
CameraSwitcher.java | 205 public void setOrientation(int degree, boolean animate) { 206 super.setOrientation(degree, animate); 211 iv.setOrientation(degree, animate); 252 mPopup.animate() 259 animate().alpha(1f).setDuration(SWITCHER_POPUP_ANIM_DURATION) 282 mPopup.animate() 289 animate().alpha(0f).setDuration(SWITCHER_POPUP_ANIM_DURATION)
|
PieItem.java | 42 private float animate; field in class:PieItem 100 animate = a; 104 return animate; 155 return start + animate;
|
/development/samples/devbytes/animation/LiveButton/src/com/example/android/livebutton/ |
LiveButton.java | 47 clickMeButton.animate().setDuration(200); 54 clickMeButton.animate().setInterpolator(sDecelerator). 57 clickMeButton.animate().setInterpolator(sOvershooter).
|
/external/chromium_org/ui/views/corewm/ |
window_animations.h | 50 // Type of visibility change transition that a window should animate. 51 // Default behavior is to animate both show and hide. 88 // Returns false if the |window| didn't animate.
|
/frameworks/base/core/java/android/widget/ |
TextSwitcher.java | 31 * A TextSwitcher is useful to animate a label on screen. Whenever 74 * be used to animate the old text out and animate the next text in.
|
/development/samples/devbytes/animation/PictureViewer/src/com/example/android/pictureviewer/ |
PictureViewer.java | 57 prevImageView.animate().setDuration(1000); 58 nextImageView.animate().setDuration(1000); 76 prevImageView.animate().alpha(0).withLayer(); 77 nextImageView.animate().alpha(1).withLayer().
|
/development/samples/devbytes/graphics/ImagePixelization/res/values/ |
strings.xml | 18 <string name="animate_pixelation">Animate</string>
|
/external/chromium/chrome/browser/ |
images_uitest.cc | 19 // Let the GIFs fully animate.
|
/external/chromium/chrome/browser/ui/cocoa/find_bar/ |
find_bar_bridge.mm | 37 void FindBarBridge::Show(bool animate) { 38 bool really_animate = animate && !disable_animations_during_testing_; 42 void FindBarBridge::Hide(bool animate) { 43 bool really_animate = animate && !disable_animations_during_testing_;
|
/external/chromium/chrome/browser/ui/find_bar/ |
find_bar.h | 30 // If |animate| is true, we try to slide the find bar in. 31 virtual void Show(bool animate) = 0; 33 // Hide the find bar. If |animate| is true, we try to slide the find bar 35 virtual void Hide(bool animate) = 0;
|
/external/chromium_org/ash/wm/caption_buttons/ |
alternate_frame_size_button.h | 65 // Clears any state set while snapping was enabled. |animate| indicates 66 // whether the buttons should animate back to their original icons. 68 AlternateFrameSizeButtonDelegate::Animate animate);
|
frame_caption_button_container_view.h | 109 virtual void SetButtonsToNormal(Animate animate) OVERRIDE; 112 Animate animate) OVERRIDE;
|
/external/chromium_org/ash/wm/overview/ |
scoped_transform_overview_window.h | 74 // |root_window| is not the window's root window. If |animate| the transform 78 bool animate); 89 // children using animations. If |animate| the transform is animated in, 92 bool animate);
|
/external/chromium_org/chrome/browser/ui/find_bar/ |
find_bar.h | 33 // If |animate| is true, we try to slide the find bar in. 34 virtual void Show(bool animate) = 0; 36 // Hide the find bar. If |animate| is true, we try to slide the find bar 38 virtual void Hide(bool animate) = 0;
|
/external/chromium_org/chrome/browser/ui/views/toolbar/ |
wrench_toolbar_button.h | 18 void SetSeverity(WrenchIconPainter::Severity severity, bool animate);
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
transition-accelerated.html | 42 <p>The lower box should animate more smoothly than the upper one (on Mac).</p>
|
animate-duration.html | 53 <p>duration: "0s" (should not animate)</p> 58 <p>duration: "0" (should animate since inherits valid duration)</p>
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGTagNames.in | 12 animate
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/ |
completionvalues1-expected-completion30.txt | 3 android:animateFirstView : Defines whether to animate the current View when the ViewAnimation is first displayed. [boolean]
|
/cts/tests/res/anim/ |
lineartest.xml | 29 <animate target="paint" id="grow" field="textSize" from="12" to="15" dur=".25"/> 40 <animate target="paint" id="shrink" field="textSize" from="15" to="12" dur=".25"/>
|
/development/samples/devbytes/animation/SlidingFragments/src/com/example/android/slidingfragments/ |
FractionalLinearLayout.java | 24 * In order to animate the fragment containing text on/off the screen, 31 * animating yFraction from 0 to 1, we can animate the fragment from the top of
|
/external/chromium_org/cc/input/ |
top_controls_manager.h | 53 bool animate); 64 gfx::Vector2dF Animate(base::TimeTicks monotonic_time);
|
/frameworks/base/docs/html/training/animation/ |
crossfade.jd | 20 <a href="#animate">Crossfade the Views</a> 159 <h2 id="animate"> 170 <li>For the view that is fading in, animate its alpha value from <code>0</code> to 171 <code>1</code>. At the same time, for the view that is fading out, animate the alpha value 198 // Animate the content view to 100% opacity, and clear any animation 200 mContentView.animate() 205 // Animate the loading view to 0% opacity. After the animation ends, 208 mLoadingView.animate()
|
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
EmergencyCarrierArea.java | 53 mCarrierText.animate().alpha(0); 56 mCarrierText.animate().alpha(1);
|
/external/chromium_org/chrome/browser/infobars/ |
infobar.cc | 61 void InfoBar::Show(bool animate) { 62 PlatformSpecificShow(animate); 63 if (animate) { 71 void InfoBar::Hide(bool animate) { 72 PlatformSpecificHide(animate); 73 if (animate) {
|