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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/polymer/components/paper-dropdown/
paper-dropdown-transition.css 8 :host(.core-transition) #ripple,
9 :host(.core-transition) #background {
13 :host(.core-transition) #scroller {
  /frameworks/support/v17/leanback/common/android/support/v17/leanback/transition/
TransitionListener.java 14 package android.support.v17.leanback.transition;
17 * Listeners for transition start and stop.
24 public void onTransitionStart(Object transition) {
27 public void onTransitionEnd(Object transition) {
30 public void onTransitionCancel(Object transition) {
33 public void onTransitionPause(Object transition) {
36 public void onTransitionResume(Object transition) {
  /cts/tests/tests/transition/src/android/transition/cts/
SimpleTransitionListener.java 16 package android.transition.cts;
18 import android.transition.Transition;
19 import android.transition.Transition.TransitionListener;
27 public Transition transition; field in class:SimpleTransitionListener
36 public void onTransitionStart(Transition transition) {
37 this.transition = transition
    [all...]
  /frameworks/base/core/java/android/transition/
TransitionPropagation.java 16 package android.transition;
22 * in {@link android.transition.Transition#createAnimator(ViewGroup,
23 * TransitionValues, TransitionValues)}. A Transition such as {@link android.transition.Explode}
24 * defaults to using {@link android.transition.CircularPropagation} and Views closer to the
27 * Views will react simultaneously to the start of the transition.
29 * @see Transition#setPropagation(TransitionPropagation)
30 * @see Transition#getEpicenter()
34 * Called by Transition to alter the Animator start delay. All start delays will be adjuste
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-i386/
tlsgd2.d 1 #name: TLS GD->LE transition check
4 #error: .*TLS transition from R_386_TLS_GD to R_386_TLS_LE_32 against `foo'.*failed.*
tlsie3.d 1 #name: TLS IE->LE transition check (R_386_TLS_GOTIE)
4 #error: .*TLS transition from R_386_TLS_GOTIE to R_386_TLS_LE_32 against `foo'.*failed.*
tlsie5.d 1 #name: TLS IE->LE transition check (R_386_TLS_IE)
4 #error: .*TLS transition from R_386_TLS_IE to R_386_TLS_LE_32 against `foo'.*failed.*
tlsie2.d 1 #name: TLS IE->LE transition check (R_386_TLS_GOTIE with %eax)
4 #error: .*TLS transition from R_386_TLS_GOTIE to R_386_TLS_LE_32 against `foo'.*failed.*
tlsie4.d 1 #name: TLS IE->LE transition check (R_386_TLS_IE with %eax)
4 #error: .*TLS transition from R_386_TLS_IE to R_386_TLS_LE_32 against `foo'.*failed.*
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-x86-64/
tlsgd2.d 1 #name: TLS GD->IE transition check
4 #error: .*TLS transition from R_X86_64_TLSGD to R_X86_64_GOTTPOFF against `foo'.*failed.*
tlsgd3.d 1 #name: TLS GD->LE transition check
4 #error: .*TLS transition from R_X86_64_TLSGD to R_X86_64_TPOFF32 against `foo'.*failed.*
tlsie2.d 1 #name: TLS IE->LE transition check
4 #error: .*TLS transition from R_X86_64_GOTTPOFF to R_X86_64_TPOFF32 against `foo'.*failed.*
tlsie3.d 1 #name: TLS IE->LE transition check (%r12)
4 #error: .*TLS transition from R_X86_64_GOTTPOFF to R_X86_64_TPOFF32 against `foo'.*failed.*
  /frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
TransitionHelperKitkat.java 14 package android.support.v17.leanback.transition;
19 import android.transition.AutoTransition;
20 import android.transition.ChangeBounds;
21 import android.transition.Fade;
22 import android.transition.Scene;
23 import android.transition.Transition;
24 import android.transition.TransitionInflater;
25 import android.transition.TransitionManager;
26 import android.transition.TransitionSet
237 ((Transition) transition).setInterpolator((TimeInterpolator) timeInterpolator); method
    [all...]
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/
SetupFragment.java 22 import android.transition.Transition;
23 import android.transition.Transition.TransitionListener;
56 public void onTransitionStart(Transition transition) {
61 public void onTransitionEnd(Transition transition) {
67 public void onTransitionCancel(Transition transition) { }
204 Transition transition = getEnterTransition(); local
210 Transition transition = getExitTransition(); local
216 Transition transition = getReenterTransition(); local
222 Transition transition = getReturnTransition(); local
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/core-transition/
core-transition-overlay.css 8 :host(.core-transition) {
12 -webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in;
13 transition: transform 0.2s ease-in-out, opacity 0.2s ease-in;
17 :host(.core-transition.core-opened) {
23 :host(.core-transition-center) {
28 :host(.core-transition-top) {
33 :host(.core-transition-bottom) {
38 :host(.core-transition-left) {
43 :host(.core-transition-right) {
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
Demo3.java 20 import android.transition.ChangeBounds;
23 import android.transition.Fade;
24 import android.transition.Recolor;
25 import android.transition.Scene;
26 import android.transition.TransitionSet;
27 import android.transition.TransitionManager;
47 TransitionSet transition = new TransitionSet(); local
48 transition.addTransition(new Fade()).addTransition(new ChangeBounds()).addTransition(new Recolor());
51 mTransitionManager.setTransition(mSearchScreen, transition);
52 mTransitionManager.setTransition(mResultsScreen, transition);
    [all...]
ScenesTestAutoTargets.java 21 import android.transition.ChangeBounds;
24 import android.transition.Fade;
25 import android.transition.Recolor;
26 import android.transition.Scene;
27 import android.transition.TransitionSet;
28 import android.transition.TransitionManager;
48 TransitionSet transition = new TransitionSet(); local
49 transition.addTransition(new Fade()).addTransition(new ChangeBounds()).addTransition(new Recolor());
52 mTransitionManager.setTransition(mSearchScreen, transition);
53 mTransitionManager.setTransition(mResultsScreen, transition);
    [all...]
Demo2.java 22 import android.transition.Fade;
23 import android.transition.ChangeBounds;
24 import android.transition.Recolor;
25 import android.transition.Scene;
26 import android.transition.TransitionSet;
27 import android.transition.TransitionManager;
59 TransitionSet transition = new TransitionSet(); local
60 transition.addTransition(new Fade().addTarget(R.id.resultsText).
65 mTransitionManager.setTransition(mSearchScreen, transition);
66 mTransitionManager.setTransition(mResultsScreen, transition);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/transition/
ActionBarTransition.java 18 package android.support.v7.transition;
31 // private static final Transition sTransition;
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
DetailActivity.java 25 import android.transition.Transition;
62 * Set the name of the view's which will be transition to, using the static values above.
79 // transition, load the thumbnail. The listener will load the full-size image when
80 // the transition is complete.
110 * Try and add a {@link Transition.TransitionListener} to the entering shared element
111 * {@link Transition}. We do this so that we can load the full-size image after the transition
114 * @return true if we were successful in adding a listener to the enter transition
117 final Transition transition = getWindow().getSharedElementEnterTransition() local
    [all...]
  /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
DetailActivity.java 25 import android.transition.Transition;
62 * Set the name of the view's which will be transition to, using the static values above.
79 // transition, load the thumbnail. The listener will load the full-size image when
80 // the transition is complete.
110 * Try and add a {@link Transition.TransitionListener} to the entering shared element
111 * {@link Transition}. We do this so that we can load the full-size image after the transition
114 * @return true if we were successful in adding a listener to the enter transition
117 final Transition transition = getWindow().getSharedElementEnterTransition() local
    [all...]
  /development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/
DetailActivity.java 25 import android.transition.Transition;
62 * Set the name of the view's which will be transition to, using the static values above.
79 // transition, load the thumbnail. The listener will load the full-size image when
80 // the transition is complete.
110 * Try and add a {@link Transition.TransitionListener} to the entering shared element
111 * {@link Transition}. We do this so that we can load the full-size image after the transition
114 * @return true if we were successful in adding a listener to the enter transition
117 final Transition transition = getWindow().getSharedElementEnterTransition() local
    [all...]
  /external/chromium-trace/catapult/third_party/polymer/components/paper-dialog/
paper-dialog-transition.css 8 :host(.paper-dialog-transition) {
11 transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
12 -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
15 :host(.paper-dialog-transition.core-opened) {
21 :host(.paper-dialog-transition-bottom) {
26 :host(.paper-dialog-transition-center.core-opened) {
27 animation: paper-dialog-transition-center-keyframes 0.2s cubic-bezier(0.4, 0, 0.2, 1);
28 -webkit-animation: paper-dialog-transition-center-keyframes 0.2s cubic-bezier(0.4, 0, 0.2, 1);
31 @keyframes paper-dialog-transition-center-keyframes {
46 @-webkit-keyframes paper-dialog-transition-center-keyframes
    [all...]
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/
SetupAnimationHelper.java 25 import android.transition.Transition;
26 import android.transition.TransitionSet;
79 * Sets the edge of the slide transition.
81 * @see android.transition.Slide#setSlideEdge
89 * Sets the duration of the transition.
107 * Sets the ID's of the views which will not be included in the transition.
115 * Builds and returns the {@link android.transition.Transition}.
117 public Transition build()
118 FadeAndShortSlide transition = new FadeAndShortSlide(mSlideEdge, mParentIdForDelay); local
    [all...]

Completed in 298 milliseconds

1 2 3 4 5 6 7 8 91011>>