/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/ |
H A D | RecentsHorizontalScrollView.java | 265 // Skip this work if a transition is running; it sets the scroll values independently 267 LayoutTransition transition = mLinearLayout.getLayoutTransition(); 268 if (transition != null && transition.isRunning()) { 278 // Make sure we're still not clobbering the transition-set values, since this 280 LayoutTransition transition = mLinearLayout.getLayoutTransition(); 281 if (transition == null || !transition.isRunning()) { 321 public void setLayoutTransition(LayoutTransition transition) { argument 323 mPerformanceHelper.setLayoutTransitionCallback(transition); [all...] |
H A D | RecentsScrollViewPerformanceHelper.java | 244 public void setLayoutTransitionCallback(LayoutTransition transition) { argument 246 if (transition != null) { 247 transition.addTransitionListener(new LayoutTransition.TransitionListener() { 249 public void startTransition(LayoutTransition transition, 255 public void endTransition(LayoutTransition transition, 274 LayoutTransition transition = mLinearLayout.getLayoutTransition(); 281 !(transition != null && transition.isRunning()) &&
|
H A D | RecentsVerticalScrollView.java | 280 // Skip this work if a transition is running; it sets the scroll values independently 282 LayoutTransition transition = mLinearLayout.getLayoutTransition(); 283 if (transition != null && transition.isRunning()) { 293 // Make sure we're still not clobbering the transition-set values, since this 295 LayoutTransition transition = mLinearLayout.getLayoutTransition(); 296 if (transition == null || !transition.isRunning()) { 336 public void setLayoutTransition(LayoutTransition transition) { argument 338 mPerformanceHelper.setLayoutTransitionCallback(transition); [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/ |
H A D | TabletTicker.java | 239 public void startTransition(LayoutTransition transition, ViewGroup container, argument 242 public void endTransition(LayoutTransition transition, ViewGroup container, argument
|
/frameworks/base/core/java/android/animation/ |
H A D | LayoutTransition.java | 40 * <p>One of the core concepts of these transition animations is that there are two types of 41 * changes that cause the transition and four different animations that run because of 42 * those changes. The changes that trigger the transition are items being added to a container 43 * (referred to as an "appearing" transition) or removed from a container (also known as 48 * the transition may want different animations for the changing items depending on whether 66 * <p>The animations specified for the transition, both the defaults and any custom animations 67 * set on the transition object, are templates only. That is, these animations exist to hold the 70 * set automatically in the process of setting up the transition each time it runs. Each of the 79 * values when the transition begins. Custom animations will be similarly populated with 122 * These variables hold the animations that are currently used to run the transition effect 1141 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument 1156 endTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument [all...] |
/frameworks/base/services/input/ |
H A D | PointerController.cpp | 194 void PointerController::fade(Transition transition) { argument 201 if (transition == TRANSITION_IMMEDIATE) { 211 void PointerController::unfade(Transition transition) { argument 218 if (transition == TRANSITION_IMMEDIATE) {
|
/frameworks/base/core/java/android/app/ |
H A D | BackStackRecord.java | 444 public FragmentTransaction setTransition(int transition) { argument 445 mTransition = transition;
|
H A D | FragmentManager.java | 205 * Pop the last fragment transition from the manager's fragment 1113 public void removeFragment(Fragment fragment, int transition, int transitionStyle) { argument 1124 transition, transitionStyle); 1128 public void hideFragment(Fragment fragment, int transition, int transitionStyle) { argument 1133 Animator anim = loadAnimator(fragment, transition, true, 1160 public void showFragment(Fragment fragment, int transition, int transitionStyle) { argument 1165 Animator anim = loadAnimator(fragment, transition, true, 1180 public void detachFragment(Fragment fragment, int transition, int transitionStyle) { argument 1191 moveToState(fragment, Fragment.CREATED, transition, transitionStyle); 1196 public void attachFragment(Fragment fragment, int transition, in argument [all...] |
/frameworks/base/media/java/android/media/videoeditor/ |
H A D | MediaItem.java | 213 * @param transition The beginning transition 215 void setBeginTransition(Transition transition) { argument 216 mBeginTransition = transition; 220 * @return The begin transition 227 * @param transition The end transition 229 void setEndTransition(Transition transition) { argument 230 mEndTransition = transition; 234 * @return The end transition [all...] |
H A D | VideoEditor.java | 339 * Pending transition generations must be allowed to complete before the 486 * before or after this media item, then this/these transition(s) are 542 * Add a transition between the media items specified by the transition. 543 * If a transition existed at the same position it is invalidated and then 544 * the transition is replaced. Note that the new transition video clip is 547 * the transition video clip. 552 * A crossfade audio transition will be automatically applied regardless of 553 * the video transition 563 addTransition(Transition transition) argument [all...] |
H A D | VideoEditorImpl.java | 71 private static final String TAG_TRANSITION = "transition"; 239 * Invalidate the end transition if necessary 265 public synchronized void addTransition(Transition transition) { argument 266 if (transition == null) { 270 final MediaItem beforeMediaItem = transition.getBeforeMediaItem(); 271 final MediaItem afterMediaItem = transition.getAfterMediaItem(); 295 mTransitions.add(transition); 301 * If a transition already exists at the specified position then 308 afterMediaItem.setEndTransition(transition); 313 * If a transition alread [all...] |
H A D | MediaArtistNativeHelper.java | 400 /** Invalid video transition. */ 403 /** Invalid audio transition. */ 412 /** External transition is called but this function is not set. */ 905 /** No transition */ 908 /** Cross fade transition */ 911 /** External transition. Currently not available. */ 914 /** AlphaMagic transition. */ 917 /** Slide transition. */ 920 /** Fade to black transition. */ 925 * Defines settings for the AlphaMagic transition 2606 generateTransition(Transition transition, EditSettings editSettings, PreviewClipProperties clipPropertiesArray, int index) argument [all...] |
/frameworks/support/v4/java/android/support/v4/app/ |
H A D | BackStackRecord.java | 444 public FragmentTransaction setTransition(int transition) { argument 445 mTransition = transition;
|
H A D | FragmentManager.java | 203 * Pop the last fragment transition from the manager's fragment 1161 public void removeFragment(Fragment fragment, int transition, int transitionStyle) { argument 1172 transition, transitionStyle); 1176 public void hideFragment(Fragment fragment, int transition, int transitionStyle) { argument 1181 Animation anim = loadAnimation(fragment, transition, true, 1195 public void showFragment(Fragment fragment, int transition, int transitionStyle) { argument 1200 Animation anim = loadAnimation(fragment, transition, true, 1214 public void detachFragment(Fragment fragment, int transition, int transitionStyle) { argument 1225 moveToState(fragment, Fragment.CREATED, transition, transitionStyle); 1230 public void attachFragment(Fragment fragment, int transition, in argument [all...] |
/frameworks/base/core/java/android/view/ |
H A D | ViewGroup.java | 366 // views during a transition when they otherwise would have become gone/invisible 2253 // In case view is detached while transition is running 3599 * object. By default, the transition object is null (so layout changes are not animated). 3601 * @param transition The LayoutTransition object that will animated changes in layout. A value 3602 * of <code>null</code> means no transition will run on layout changes. 3605 public void setLayoutTransition(LayoutTransition transition) { argument 3609 mTransition = transition; 3619 * object. By default, the transition object is null (so layout changes are not animated). 3622 * A value of <code>null</code> means no transition will run on layout changes. 4226 // record the fact that we noop'd it; request layout when transition finishe 5122 requestTransitionStart(LayoutTransition transition) argument [all...] |
H A D | ViewRootImpl.java | 827 * depends upon, like the bounding rectangles of the affected views). So we add the transition 830 * @param transition The LayoutTransition to be started on the next traversal. 834 public void requestTransitionStart(LayoutTransition transition) { argument 835 if (mPendingTransitions == null || !mPendingTransitions.contains(transition)) { 839 mPendingTransitions.add(transition);
|
/frameworks/base/services/input/tests/ |
H A D | InputReader_test.cpp | 107 virtual void fade(Transition transition) { argument 110 virtual void unfade(Transition transition) { argument
|