HomeSort by relevance Sort by last modified time
    Searched refs:animated (Results 1 - 25 of 66) sorted by null

1 2 3

  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/activity/
DismissRecentsToHomeAnimationStarted.java 26 public final boolean animated; field in class:DismissRecentsToHomeAnimationStarted
28 public DismissRecentsToHomeAnimationStarted(boolean animated) {
29 this.animated = animated;
  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/
IOSViewControllerListener.java 28 public void viewDidAppear (boolean animated);
IOSUIViewController.java 61 public void viewDidAppear (boolean animated) {
63 app.viewControllerListener.viewDidAppear(animated);
  /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/
IOSViewControllerListener.java 28 public void viewDidAppear (boolean animated);
IOSGraphics.java 76 public void viewDidAppear (boolean animated) {
77 if (app.viewControllerListener != null) app.viewControllerListener.viewDidAppear(animated);
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherTransitionable.java 23 void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean multiplePagesVisible);
24 void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace);
26 void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace);
LauncherStateTransitionAnimation.java 143 final boolean animated, final boolean startSearchAfterTransition) {
178 Workspace.State.NORMAL_HIDDEN, buttonView, toView, animated, animType, cb);
185 final boolean animated) {
189 Workspace.State.OVERVIEW_HIDDEN, buttonView, toView, animated, CIRCULAR_REVEAL,
203 final boolean animated, final Runnable onCompleteRunnable) {
217 animated, animType, onCompleteRunnable);
221 animated, onCompleteRunnable);
224 animated, onCompleteRunnable);
235 final boolean animated, int animType, final PrivateTransitionCallbacks pCb) {
256 animated, initialized, animation, layerViews)
    [all...]
WorkspaceStateTransitionAnimation.java 229 boolean animated, HashMap<View, Integer> layerViews) {
235 animateWorkspace(states, animated, workspaceDuration, layerViews,
237 animateBackgroundGradient(states, animated, BACKGROUND_FADE_OUT_DURATION);
264 private void animateWorkspace(final TransitionStates states, final boolean animated,
269 if (animated) {
339 if (animated) {
362 if (animated) {
382 if (animated) {
460 * @param animated whether or not to set the background alpha immediately
464 boolean animated, int duration)
    [all...]
Launcher.java 3324 mStateTransitionAnimation.startAnimationToAllApps(mWorkspace.getState(), animated, local
3327 mStateTransitionAnimation.startAnimationToWidgets(mWorkspace.getState(), animated); local
    [all...]
  /external/deqp/framework/platform/ios/
tcuIOSViewController.m 65 - (void)viewWillAppear:(BOOL)animated
67 [super viewWillAppear:animated];
70 - (void)viewWillDisappear:(BOOL)animated
72 [super viewWillDisappear:animated];
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
jquery.treeview.min.js 15 */;(function($){$.extend($.fn,{swapClass:function(c1,c2){var c1Elements=this.filter('.'+c1);this.filter('.'+c2).removeClass(c2).addClass(c1);c1Elements.removeClass(c1).addClass(c2);return this;},replaceClass:function(c1,c2){return this.filter('.'+c1).removeClass(c1).addClass(c2).end();},hoverClass:function(className){className=className||"hover";return this.hover(function(){$(this).addClass(className);},function(){$(this).removeClass(className);});},heightToggle:function(animated,callback){animated?this.animate({height:"toggle"},animated,callback):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();if(callback)callback.apply(this,arguments);});},heightHide:function(animated,callback){if(animated){this.animate({height:"hide"},animated,callback);}else{this.hide();if(callback)this.each(callback);}},prepareBranches:function(settings){if(!settings.prerendered){this.filter(":last-child:not(ul)").addClass(CLASSES.last);this.filter((settings.collapsed?"":"."+CLASSES.closed)+":not(."+CLASSES.open+")").find(">ul").hide();}return this.filter(":has(>ul)");},applyClasses:function(settings,toggler){this.filter(":has(>ul):not(:has(>a))").find(">span").click(function(event){toggler.apply($(this).next());}).add($("a",this)).hoverClass();if(!settings.prerendered){this.filter(":has(>ul:hidden)").addClass(CLASSES.expandable).replaceClass(CLASSES.last,CLASSES.lastExpandable);this.not(":has(>ul:hidden)").addClass(CLASSES.collapsable).replaceClass(CLASSES.last,CLASSES.lastCollapsable);this.prepend("<div class=\""+CLASSES.hitarea+"\"/>").find("div."+CLASSES.hitarea).each(function(){var classes="";$.each($(this).parent().attr("class").split(" "),function(){classes+=this+"-hitarea ";});$(this).addClass(classes);});}this.find("div."+CLASSES.hitarea).click(toggler);},treeview:function(settings){settings=$.extend({cookieId:"treeview"},settings);if(settings.add){return this.trigger("add",[settings.add]);}if(settings.toggle){var callback=settings.toggle;settings.toggle=function(){return callback.apply($(this).parent()[0],arguments);};}function treeController(tree,control){function handler(filter){return function(){toggler.apply($("div."+CLASSES.hitarea,tree).filter(function(){return filter?$(this).parent("."+filter).length:true;}));return false;};}$("a:eq(0)",control).click(handler(CLASSES.collapsable));$("a:eq(1)",control).click(handler(CLASSES.expandable));$("a:eq(2)",control).click(handler());}function toggler(){$(this).parent().find(">.hitarea").swapClass(CLASSES.collapsableHitarea,CLASSES.expandableHitarea).swapClass(CLASSES.lastCollapsableHitarea,CLASSES.lastExpandableHitarea).end().swapClass(CLASSES.collapsable,CLASSES.expandable).swapClass(CLASSES.lastCollapsable,CLASSES.lastExpandable).find(">ul").heightToggle(settings.animated,settings.toggle);if(settings.unique){$(this).parent().siblings().find(">.hitarea").replaceClass(CLASSES.collapsableHitarea,CLASSES.expandableHitarea).replaceClass(CLASSES.lastCollapsableHitarea,CLASSES.lastExpandableHitarea).end().replaceClass(CLASSES.collapsable,CLASSES.expandable).replaceClass(CLASSES.lastCollapsable,CLASSES.lastExpandable).find(">ul").heightHide(settings.animated,settings.toggle);}}function serialize(){function binary(arg){return arg?1:0;}var data=[];branches. (…)
  /frameworks/support/graphics/drawable/animated/tests/src/android/support/graphics/drawable/tests/
DrawableStubActivity.java 20 import android.support.graphics.drawable.animated.test.R;
  /packages/apps/Launcher2/src/com/android/launcher2/
SearchDropTargetBar.java 134 public void showSearchBar(boolean animated) {
136 if (animated) {
149 public void hideSearchBar(boolean animated) {
151 if (animated) {
AppsCustomizeTabHost.java 370 public void onLauncherTransitionPrepare(Launcher l, boolean animated, boolean toWorkspace) {
371 mAppsCustomizePane.onLauncherTransitionPrepare(l, animated, toWorkspace);
401 public void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace) {
402 if (animated) {
413 public void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace) {
414 mAppsCustomizePane.onLauncherTransitionEnd(l, animated, toWorkspace);
416 if (animated) {
Launcher.java 757 // The animated view may be null in the case of a rotation during widget configuration
    [all...]
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/ios/
ARDMainViewController.m 76 animated:YES
  /frameworks/support/graphics/drawable/
Android.mk 34 # Animated vector drawable library
40 LOCAL_SRC_FILES := $(call all-java-files-under, animated/src)
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
AllAppsFastScrollHelper.java 47 // Set of all views animated during fast scroll. We keep track of these ourselves since there
121 // animated) and they are just fine-tuning their section from the last section, so
193 updateViewFastScrollFocusState(v, holder.getPosition(), false /* animated */);
227 int pos, boolean animated) {
237 v.setFastScrollFocusState(newState, animated);
AllAppsContainerView.java 641 public void onLauncherTransitionPrepare(Launcher l, boolean animated,
647 public void onLauncherTransitionStart(Launcher l, boolean animated, boolean toWorkspace) {
657 public void onLauncherTransitionEnd(Launcher l, boolean animated, boolean toWorkspace) {
  /build/core/
pathmap.mk 145 frameworks/support/graphics/drawable/animated \
  /cts/tests/tests/graphics/src/android/graphics/cts/
MovieTest.java 35 private final int MOVIE = android.graphics.cts.R.drawable.animated;
62 File imagefile = new File(dbDir, "animated.gif");
  /frameworks/base/core/java/android/gesture/
GestureOverlayView.java 415 public void clear(boolean animated) {
416 clear(animated, false, true);
419 private void clear(boolean animated, boolean fireActionPerformed, boolean immediate) {
426 if (animated && mCurrentGesture != null) {
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PasswordTextView.java 271 public void reset(boolean animated, boolean announce) {
279 if (animated) {
297 if (!animated) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ActivatableNotificationView.java 62 * expanding)? 1.0 meaning that it ends immediately and 0.0 that it is continuously animated.
68 * expanding)? 1.0 meaning that it ends immediately and 0.0 that it is continuously animated.
74 * expanding)? 1.0 meaning that it starts immediately and 0.0 that it is animated at all.
80 * expanding) 1.0 meaning that it starts immediately and 0.0 that it is animated at all.
464 public void setTintColor(int color, boolean animated) {
466 updateBackgroundTint(animated);
470 updateBackgroundTint(false /* animated */);
473 private void updateBackgroundTint(boolean animated) {
481 if (!animated) {
    [all...]
ExpandableView.java 201 public void setHideSensitive(boolean hideSensitive, boolean animated, long delay,
449 * @param needsAnimation whether the view height needs to be animated

Completed in 429 milliseconds

1 2 3