/frameworks/support/samples/SupportTransitionDemos/src/com/example/android/support/transition/widget/ |
FragmentTransitionUsage.java | 17 package com.example.android.support.transition.widget; 21 import android.support.transition.AutoTransition; 22 import android.support.transition.Fade; 23 import android.support.transition.Transition; 32 import com.example.android.support.transition.R; 35 * Demonstrates usage of shared element Transition between Fragments. 41 private static final Transition SHARED_TRANSITION = new AutoTransition(); 42 private static final Transition NON_SHARED_TRANSITION = new Fade();
|
ChangeImageTransformUsage.java | 17 package com.example.android.support.transition.widget; 21 import android.support.transition.ChangeImageTransform; 22 import android.support.transition.Transition; 23 import android.support.transition.TransitionManager; 28 import com.example.android.support.transition.R; 31 * This demonstrates basic usage of the ChangeImageTransform Transition. 38 private static final Transition TRANSITION = new ChangeImageTransform(); 53 TransitionManager.beginDelayedTransition(mRoot, TRANSITION); [all...] |
/cts/tests/tests/transition/src/android/transition/cts/ |
TransitionTest.java | 16 package android.transition.cts; 43 import android.transition.ArcMotion; 44 import android.transition.AutoTransition; 45 import android.transition.ChangeBounds; 46 import android.transition.CircularPropagation; 47 import android.transition.PathMotion; 48 import android.transition.Scene; 49 import android.transition.Transition; 50 import android.transition.Transition.EpicenterCallback 443 CaptureAnimatorTransition transition = new CaptureAnimatorTransition(); local 475 CaptureAnimatorTransition transition = new CaptureAnimatorTransition(); local 519 Transition transition = new ChangeBounds(); local 528 CaptureAnimatorTransition transition = new CaptureAnimatorTransition(); local 550 CheckTransitionValuesTransition transition = new CheckTransitionValuesTransition(); local 584 TransitionPropertiesTransition transition = new TransitionPropertiesTransition(false); local [all...] |
SlideEdgeTest.java | 16 package android.transition.cts; 29 import android.transition.Slide; 30 import android.transition.Transition; 31 import android.transition.TransitionManager; 72 final Transition.TransitionListener listener = 73 mock(Transition.TransitionListener.class); 147 final Transition.TransitionListener listener = 148 mock(Transition.TransitionListener.class);
|
/device/linaro/bootloader/edk2/IntelFspPkg/Library/SecFspSecPlatformLibNull/Ia32/ |
Flat32.s | 36 # Transition to non-paged flat-model protected mode from a
38 # This is a bare bones transition to protected mode only
59 # Transition to 16 bit protected mode
79 # Transition to Flat 32 bit protected mode
80 # The jump to a far pointer causes the transition to 32 bit mode
|
/frameworks/support/transition/tests/src/android/support/transition/ |
PropagationTest.java | 17 package android.support.transition; 26 import android.support.transition.test.R; 61 mTransition.setEpicenterCallback(new Transition.EpicenterCallback() { 63 public Rect onGetEpicenter(@NonNull Transition transition) {
|
TransitionSetTest.java | 17 package android.support.transition; 26 import android.support.transition.test.R; 36 private final Transition mTransition = new TransitionTest.EmptyTransition(); 56 Transition anotherTransition = new TransitionTest.EmptyTransition();
|
/packages/apps/ExactCalculator/src/com/android/calculator2/ |
CalculatorDisplay.java | 20 import android.transition.Fade; 21 import android.transition.Transition; 22 import android.transition.TransitionManager; 62 private Transition mTransition;
|
/frameworks/base/core/java/android/view/ |
Window.java | 44 import android.transition.Scene; 45 import android.transition.Transition; 46 import android.transition.TransitionManager; 134 * {@link #setTransitionManager(android.transition.TransitionManager)}. If none is set, 592 * @param suppressWindowTransition True if the resulting exit and enter window transition 604 * @param suppressWindowTransition True if the resulting exit and enter window transition [all...] |
/frameworks/base/core/java/android/app/ |
ActivityTransitionCoordinator.java | 26 import android.transition.Transition; 27 import android.transition.TransitionListenerAdapter; 28 import android.transition.TransitionSet; 29 import android.transition.Visibility; 59 * - Exit transition starts by setting transitioning Views to INVISIBLE 65 * 4) The shared element transition completes. 71 * - The shared element transition is started 72 * - If the window allows overlapping transitions, the views transition is started by setting 77 * 7) The exit transition completes in the calling Activity [all...] |
/frameworks/base/core/java/android/transition/ |
ChangeText.java | 17 package android.transition; 32 * This transition tracks changes to the text in TextView targets. If the text 33 * changes between the start and end scenes, the transition ensures that the 34 * starting text stays until the transition ends, at which point it changes 40 public class ChangeText extends Transition { 55 * their original text during the transition, setting it to the final text when 56 * the transition ends. This is the default behavior. 64 * view at the end of the fade-out animation. This transition is typically 65 * used with a later {@link #CHANGE_BEHAVIOR_IN} transition, allowing more 74 * end text into the affected target view(s). This transition is typicall [all...] |
Rotate.java | 17 package android.transition; 25 * This transition captures the rotation property of targets before and after 30 public class Rotate extends Transition {
|
Fade.java | 17 package android.transition; 32 * This transition tracks changes to the visibility of target views in the 38 * <p>The ability of this transition to fade out a particular view, and the 56 * <p>A Fade transition can be described in a resource file by using the 59 * {@link android.R.styleable#Transition}.</p> 64 private static boolean DBG = Transition.DBG && false; 69 * Fading mode used in {@link #Fade(int)} to make the transition 77 * Fading mode used in {@link #Fade(int)} to make the transition 85 * Constructs a Fade transition that will fade targets in and out. 91 * Constructs a Fade transition that will fade targets i [all...] |
/cts/tests/tests/app.usage/src/android/app/usage/cts/ |
ActivityTransitionTest.java | 26 import android.transition.Transition; 27 import android.transition.Transition.TransitionListener; 150 assertTrue("Reenter transition didn't finish", latch.await(1000, TimeUnit.MILLISECONDS)); 218 assertTrue("Reenter transition didn't finish", latch.await(1000, TimeUnit.MILLISECONDS)); 287 public void onTransitionStart(Transition transition) { 291 public void onTransitionEnd(Transition transition) { [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/ |
DFAState.java | 75 * elements are Transition objects. 77 protected List<Transition> transitions = 78 new ArrayList<Transition>(INITIAL_NUM_TRANSITIONS); 157 * transition that could be a valid label is transition(0). When we 176 public Transition transition(int i) { method in class:DFAState 177 return (Transition)transitions.get(i); 184 public void addTransition(Transition t) { 188 /** Add a transition from this state to target with label. Retur [all...] |
DFA.java | 171 /** Map an edge transition table to a unique set number; ordered so 173 * and then ref them from within the transition[][] table. Like this 188 /** The unique edge transition class number; every time we see a new 191 * some of the big edge transition tables are seen about 57 times. 195 /* This DFA can be converted to a transition[state][char] table and 214 public Vector transition; field in class:DFA 330 if ( transition==null || transition.size()==0 ) { 333 List encoded = new ArrayList(transition.size()); 334 // walk Vector<Vector<FormattedInteger>> which is the transition[][] tabl [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
DOTGenerator.java | 131 // make a DOT edge for each transition 133 Transition edge = (Transition) s.transition(i); 194 if ( alt.transition[1] !=null ) { 195 alt = (NFAState)alt.transition[1].target; 205 // make a DOT edge for each transition 208 Transition edge = (Transition) s.transition(i) [all...] |
/frameworks/support/transition/src/android/support/transition/ |
Visibility.java | 17 package android.support.transition; 39 * This transition tracks changes to the visibility of target views in the 51 public abstract class Visibility extends Transition { 58 * Mode used in {@link #setMode(int)} to make the transition 65 * Mode used in {@link #setMode(int)} to make the transition 111 * Changes the transition to support appearing and/or disappearing Views, depending 114 * @param mode The behavior supported by this transition, a combination of 165 * Transition#createAnimator(ViewGroup, TransitionValues, TransitionValues)} 263 * @param sceneRoot The root of the transition hierarchy 269 * overall transition for this scene change. A null value means no animatio [all...] |
/frameworks/base/core/java/android/widget/ |
PopupWindow.java | 35 import android.transition.Transition; 36 import android.transition.Transition.EpicenterCallback; 37 import android.transition.Transition.TransitionListener; 38 import android.transition.TransitionInflater; 39 import android.transition.TransitionListenerAdapter; 40 import android.transition.TransitionManager; 41 import android.transition.TransitionSet 476 final Transition transition = inflater.inflateTransition(resId); local [all...] |
/device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/Ia32/ |
Flat32ToFlat64.asm | 3 ; Transition from 32 bit flat protected mode into 64 bit flat protected mode
|
/external/icu/icu4c/source/i18n/unicode/ |
rbtz.h | 28 struct Transition; 253 * Gets the first time zone transition after the base time. 256 * @param result Receives the first transition after the base time. 257 * @return TRUE if the transition is found. 263 * Gets the most recent time zone transition before the base time. 266 * @param result Receives the most recent transition before the base time. 267 * @return TRUE if the transition is found. 291 * @param trsrules Receives the timezone transition rules 293 * the timezone transition rules. On output, actual number of 318 UDate getTransitionTime(Transition* transition, UBool local [all...] |
/frameworks/base/libs/input/ |
PointerController.h | 100 virtual void fade(Transition transition); 101 virtual void unfade(Transition transition);
|
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/ |
CrossfadeMultiple.java | 20 import android.transition.ChangeBounds; 23 import android.transition.Crossfade; 24 import android.transition.ChangeText; 25 import android.transition.Transition; 26 import android.transition.TransitionSet; 27 import android.transition.TransitionManager; 38 Transition mTransition;
|
LoginActivity.java | 22 import android.transition.Scene; 24 import android.transition.Fade; 25 import android.transition.Recolor; 26 import android.transition.Slide; 27 import android.transition.Transition; 28 import android.transition.TransitionSet; 29 import android.transition.TransitionManager; 67 Transition colorizer = new Recolor().addTarget(R.id.password).
|
/packages/apps/TV/common/src/com/android/tv/common/ui/setup/ |
SetupActivity.java | 27 import android.transition.Transition; 28 import android.transition.TransitionInflater; 60 // enter transition. See http://b/26255145 109 Transition sharedTransition = TransitionInflater.from(this) 110 .inflateTransition(R.transition.transition_action_background); 155 * Returns the duration of the shared element transition. 157 * <p>It's (exit transition) + (delayed animation) + (enter transition).
|