Searched refs:transition (Results 1 - 25 of 25) sorted by relevance

/frameworks/base/core/java/android/view/
H A DIDisplayContentChangeListener.aidl29 void onWindowTransition(int displayId, int transition, in WindowInfo info);
H A DViewGroup.java412 // views during a transition when they otherwise would have become gone/invisible
2517 // In case view is detached while transition is running
3645 * object. By default, the transition object is null (so layout changes are not animated).
3647 * @param transition The LayoutTransition object that will animated changes in layout. A value
3648 * of <code>null</code> means no transition will run on layout changes.
3651 public void setLayoutTransition(LayoutTransition transition) { argument
3655 mTransition = transition;
3665 * object. By default, the transition object is null (so layout changes are not animated).
3668 * A value of <code>null</code> means no transition will run on layout changes.
4377 // record the fact that we noop'd it; request layout when transition finishe
5252 requestTransitionStart(LayoutTransition transition) argument
[all...]
H A DViewRootImpl.java943 * depends upon, like the bounding rectangles of the affected views). So we add the transition
946 * @param transition The LayoutTransition to be started on the next traversal.
950 public void requestTransitionStart(LayoutTransition transition) { argument
951 if (mPendingTransitions == null || !mPendingTransitions.contains(transition)) {
955 mPendingTransitions.add(transition);
/frameworks/base/media/java/android/media/videoeditor/
H A DVideoEditorImpl.java71 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 DMediaItem.java213 * @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 DMediaArtistNativeHelper.java400 /** 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...]
H A DVideoEditor.java339 * 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...]
/frameworks/base/services/input/
H A DPointerController.h76 virtual void fade(Transition transition) = 0;
82 virtual void unfade(Transition transition) = 0;
165 virtual void fade(Transition transition);
166 virtual void unfade(Transition transition);
H A DPointerController.cpp194 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/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentsHorizontalScrollView.java316 // Skip this work if a transition is running; it sets the scroll values independently
318 LayoutTransition transition = mLinearLayout.getLayoutTransition();
319 if (transition != null && transition.isRunning()) {
329 // Make sure we're still not clobbering the transition-set values, since this
331 LayoutTransition transition = mLinearLayout.getLayoutTransition();
332 if (transition == null || !transition.isRunning()) {
384 public void setLayoutTransition(LayoutTransition transition) { argument
385 // The layout transition applie
[all...]
H A DRecentsVerticalScrollView.java325 // Skip this work if a transition is running; it sets the scroll values independently
327 LayoutTransition transition = mLinearLayout.getLayoutTransition();
328 if (transition != null && transition.isRunning()) {
338 // Make sure we're still not clobbering the transition-set values, since this
340 LayoutTransition transition = mLinearLayout.getLayoutTransition();
341 if (transition == null || !transition.isRunning()) {
394 public void setLayoutTransition(LayoutTransition transition) { argument
395 // The layout transition applie
[all...]
/frameworks/base/docs/html/guide/google/gcm/client-javadoc/
H A Ddefault.css327 -webkit-transition: height 0.25s ease-in;
328 -moz-transition: height 0.25s ease-in;
329 transition: height 0.25s ease-in; }
331 -webkit-transition: height 0.25s ease-out;
332 -moz-transition: height 0.25s ease-out;
333 transition: height 0.25s ease-out; }
2564 -webkit-transition: color .4s ease;
2565 -moz-transition: color .4s ease;
2566 -o-transition: color .4s ease;
2567 transition
[all...]
/frameworks/base/docs/html/guide/google/gcm/server-javadoc/
H A Ddefault.css327 -webkit-transition: height 0.25s ease-in;
328 -moz-transition: height 0.25s ease-in;
329 transition: height 0.25s ease-in; }
331 -webkit-transition: height 0.25s ease-out;
332 -moz-transition: height 0.25s ease-out;
333 transition: height 0.25s ease-out; }
2564 -webkit-transition: color .4s ease;
2565 -moz-transition: color .4s ease;
2566 -o-transition: color .4s ease;
2567 transition
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderSessionImpl.java821 // set up the transition for the parent.
822 LayoutTransition transition = new LayoutTransition();
823 previousParent.setLayoutTransition(transition);
829 transition.setDuration(LayoutTransition.DISAPPEARING, 100);
831 transition.setStartDelay(LayoutTransition.CHANGE_DISAPPEARING, 100);
833 transition.setDuration(LayoutTransition.CHANGE_DISAPPEARING, 100);
835 transition.setDuration(LayoutTransition.CHANGE_APPEARING, 100);
837 transition.setStartDelay(LayoutTransition.APPEARING, 100);
839 transition.setDuration(LayoutTransition.APPEARING, 100);
886 // check if there is a transition o
[all...]
/frameworks/base/services/java/com/android/server/accessibility/
H A DScreenMagnifier.java924 public void onWindowTransition(int displayId, int transition, WindowInfo info) {
926 transition, 0, WindowInfo.obtain(info)).sendToTarget();
987 private void handleOnWindowTransition(int transition, WindowInfo info) { argument
990 + windowTransitionToString(transition));
995 switch (transition) {
1011 switch (transition) {
1020 switch (transition) {
1123 private String windowTransitionToString(int transition) { argument
1124 switch (transition) {
1222 final int transition
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
H A DTabletTicker.java240 public void startTransition(LayoutTransition transition, ViewGroup container, argument
243 public void endTransition(LayoutTransition transition, ViewGroup container, argument
H A DTabletStatusBar.java513 public void endTransition(LayoutTransition transition, ViewGroup container,
519 public void startTransition(LayoutTransition transition, ViewGroup container,
/frameworks/base/core/java/android/app/
H A DFragmentManager.java205 * Pop the last fragment transition from the manager's fragment
1142 public void removeFragment(Fragment fragment, int transition, int transitionStyle) { argument
1163 transition, transitionStyle, false);
1167 public void hideFragment(Fragment fragment, int transition, int transitionStyle) { argument
1172 Animator anim = loadAnimator(fragment, transition, true,
1199 public void showFragment(Fragment fragment, int transition, int transitionStyle) { argument
1204 Animator anim = loadAnimator(fragment, transition, true,
1219 public void detachFragment(Fragment fragment, int transition, int transitionStyle) { argument
1233 moveToState(fragment, Fragment.CREATED, transition, transitionStyle, false);
1238 public void attachFragment(Fragment fragment, int transition, in argument
[all...]
H A DBackStackRecord.java491 public FragmentTransaction setTransition(int transition) { argument
492 mTransition = transition;
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentManager.java203 * Pop the last fragment transition from the manager's fragment
1173 public void removeFragment(Fragment fragment, int transition, int transitionStyle) { argument
1186 transition, transitionStyle, false);
1190 public void hideFragment(Fragment fragment, int transition, int transitionStyle) { argument
1195 Animation anim = loadAnimation(fragment, transition, true,
1209 public void showFragment(Fragment fragment, int transition, int transitionStyle) { argument
1214 Animation anim = loadAnimation(fragment, transition, true,
1228 public void detachFragment(Fragment fragment, int transition, int transitionStyle) { argument
1242 moveToState(fragment, Fragment.CREATED, transition, transitionStyle, false);
1247 public void attachFragment(Fragment fragment, int transition, in argument
[all...]
H A DBackStackRecord.java491 public FragmentTransaction setTransition(int transition) { argument
492 mTransition = transition;
/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java40 * <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
124 * from the container. This transition typ
1451 startTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
1466 endTransition(LayoutTransition transition, ViewGroup container, View view, int transitionType) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewClassic.java6966 * zoom center and do a smooth zoom transition. The rect is in document
7845 FocusTransitionDrawable transition = null;
7847 transition = new FocusTransitionDrawable(this);
7852 if (transition != null) {
7853 transition.mPreviousRegion = new Region(mTouchHighlightRegion);
7874 if (transition != null && transition.mPreviousRegion != null) {
7875 transition.mNewRegion = new Region(mTouchHighlightRegion);
7876 mFocusTransition = transition;
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java263 /** Amount of time (in milliseconds) to animate the fade-in-out transition for
487 // transition, mNextAppTransition will be the kind of transition to
490 // made visible or hidden at the next transition.
1637 // If we are currently waiting for an app transition, and either
1642 // (the app token may not be involved in the transition), but good
1643 // enough (we'll just wait until whatever transition is pending
2482 // transition window, well there is no point now.
2486 // If this is the last window except for a starting transition
2487 // window, we need to get rid of the starting transition
6546 scheduleNotifyWindowTranstionIfNeededLocked(WindowState window, int transition) argument
6554 handleNotifyWindowTranstion(int transition, WindowInfo info) argument
[all...]
/frameworks/base/services/input/tests/
H A DInputReader_test.cpp107 virtual void fade(Transition transition) { argument
110 virtual void unfade(Transition transition) { argument

Completed in 2380 milliseconds