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

1 2 3 4 5 6

  /frameworks/base/core/java/android/transition/
TransitionManager.java 17 package android.transition;
32 * transition objects with calls to {@link #setTransition(Scene, Transition)}
33 * or {@link #setTransition(Scene, Scene, Transition)}. Setting specific
37 * only necessary if the application wants different transition behavior
41 * <code>res/transition</code> directory. TransitionManager resources consist of
43 * <code>transition</code> tags, each of which describe the relationship of
44 * that transition to the from/to scene information in that tag.
48 * {@sample development/samples/ApiDemos/res/transition/transitions_mgr.xml TransitionManager}
54 * <code>transition</code> attribute, there is a reference to a resourc
152 Transition transition = null; local
    [all...]
TransitionPropagation.java 16 package android.transition;
23 * in {@link android.transition.Transition#createAnimator(ViewGroup,
24 * TransitionValues, TransitionValues)}. A Transition such as {@link android.transition.Explode}
25 * defaults to using {@link android.transition.CircularPropagation} and Views closer to the
28 * Views will react simultaneously to the start of the transition.
30 * @see Transition#setPropagation(TransitionPropagation)
31 * @see Transition#getEpicenter()
35 * Called by Transition to alter the Animator start delay. All start delays will be adjuste
    [all...]
TransitionValues.java 17 package android.transition;
27 * Data structure which holds cached values for the transition.
33 * example, the platform might store a property "alpha" in a transition
37 * {@link Transition#captureStartValues(TransitionValues)}
41 * for {@link Transition#createAnimator(ViewGroup, TransitionValues, TransitionValues)}
59 final ArrayList<Transition> targetedTransitions = new ArrayList<Transition>();
TransitionSet.java 17 package android.transition;
37 * a {@link ChangeBounds}, followed by a Fade(Fade.OUT) transition.
42 * {@link android.R.styleable#Transition}. Child transitions of the
46 * transition on the affected view targets:</p>
55 public class TransitionSet extends Transition {
57 ArrayList<Transition> mTransitions = new ArrayList<Transition>();
69 * play in sequence; when one child transition ends, the next child
70 * transition begins. Note that a transition does not end until al
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
Transition.java 30 /** A generic transition between any two state machine states. It defines
37 public class Transition implements Comparable {
38 /** What label must be consumed to transition to target */
41 /** The target of this transition */
44 public Transition(Label label, State target) {
49 public Transition(int label, State target) {
71 Transition other = (Transition)o;
77 Transition other = (Transition)o
    [all...]
State.java 43 public abstract void addTransition(Transition e);
45 public abstract Transition transition(int i); method in class:State
RuleClosureTransition.java 32 /** A transition used to reference another rule. It tracks two targets
33 * really: the actual transition target and the state following the
38 public class RuleClosureTransition extends Transition {
NFAState.java 48 public Transition[] transition = new Transition[MAX_TRANSITIONS]; field in class:NFAState
100 /** Is this state the sole target of an EOT transition? */
116 public void addTransition(Transition e) {
118 throw new IllegalArgumentException("You can't add a null transition");
120 if ( numTransitions>transition.length ) {
121 throw new IllegalArgumentException("You can only have "+transition.length+" transitions");
124 transition[numTransitions] = e;
139 * transition another state has
150 public Transition transition(int i) { method in class:NFAState
    [all...]
DFAOptimizer.java 192 Transition edge = (Transition) d.transition(i);
204 System.out.println("ignoring transition "+i+" to max alt "+
221 Transition edge = (Transition) d.transition(i);
258 Transition edge = (Transition) d.transition(i)
    [all...]
  /external/chromium_org/ui/app_list/
pagination_model.h 29 // Holds info for transition animation and touch scroll.
30 struct Transition {
31 Transition(int target_page, double progress)
36 bool Equals(const Transition& rhs) const {
40 // Target page for the transition or -1 if there is no target page. For
56 // Selects a page. |animate| is true if the transition should be animated.
66 void SetTransition(const Transition& transition);
69 // Starts a scroll transition. If there is a running transition animation
90 const Transition& transition() const { return transition_; } function in class:app_list::PaginationModel
    [all...]
  /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...]
  /frameworks/support/v4/api21/android/support/v4/app/
FragmentTransitionCompat21.java 22 import android.transition.Transition;
23 import android.transition.TransitionInflater;
24 import android.transition.TransitionManager;
25 import android.transition.TransitionSet;
40 public static Object cloneTransition(Object transition) {
41 if (transition != null) {
42 transition = ((Transition)transition).clone()
65 Transition transition = (Transition) transitionObject; local
70 Transition transition = (Transition) transitionObject; local
75 Transition transition = (Transition) transitionObject; local
164 Transition transition; local
317 Transition transition = (Transition) transitionObject; local
346 Transition transition = (Transition) transitionObject; local
    [all...]
  /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
221 ((Transition) transition).setInterpolator((TimeInterpolator) timeInterpolator); method
    [all...]
  /frameworks/native/services/inputflinger/
PointerControllerInterface.h 61 enum Transition {
69 virtual void fade(Transition transition) = 0;
75 virtual void unfade(Transition transition) = 0;
  /external/chromium_org/chrome/browser/history/
visit_tracker.h 18 // transition type properly.
39 // Returns the visit ID for the transition given information about the visit
45 struct Transition {
50 typedef std::vector<Transition> TransitionList;
53 // Expires oldish items in the given transition list. This keeps the list
  /frameworks/base/core/java/com/android/internal/transition/
ActionBarTransition.java 18 package com.android.internal.transition;
20 import android.transition.ChangeBounds;
21 import android.transition.Fade;
22 import android.transition.ChangeText;
23 import android.transition.Transition;
24 import android.transition.TransitionManager;
25 import android.transition.TransitionSet;
34 private static final Transition sTransition;
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
ActivityState.java 67 private static final String KEY_TRANSITION_IN = "transition-in";
69 private StateTransitionAnimation.Transition mNextTransition =
70 StateTransitionAnimation.Transition.None;
171 Class<? extends ActivityState> incoming, StateTransitionAnimation.Transition hint) {
173 mNextTransition = StateTransitionAnimation.Transition.Outgoing;
175 mNextTransition = StateTransitionAnimation.Transition.PhotoIncoming;
190 if (mNextTransition != StateTransitionAnimation.Transition.None) {
193 mNextTransition = StateTransitionAnimation.Transition.None;
235 // the transition store should be cleared after resume;
244 KEY_TRANSITION_IN, StateTransitionAnimation.Transition.None)
    [all...]
  /frameworks/base/core/java/android/app/
ExitTransitionCoordinator.java 30 import android.transition.Transition;
31 import android.transition.TransitionManager;
161 Transition transition = getSharedElementExitTransition(); local
162 transition.addListener(new Transition.TransitionListenerAdapter() {
164 public void onTransitionEnd(Transition transition) {
165 transition.removeListener(this)
269 Transition transition = getExitTransition(); local
360 Transition transition = mergeTransitions(sharedElementTransition, viewsTransition); local
    [all...]
  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
SequenceTest.java 22 import android.transition.Scene;
23 import android.transition.Transition;
24 import android.transition.TransitionSet;
26 import android.transition.Fade;
27 import android.transition.ChangeBounds;
28 import android.transition.TransitionManager;
54 Transition fade1 = new Fade().addTarget(R.id.removingButton);
55 Transition fade2 = new Fade().addTarget(R.id.invisibleButton);
56 Transition fade3 = new Fade().addTarget(R.id.goneButton)
    [all...]
CrossfadeImage.java 22 import android.transition.Crossfade;
23 import android.transition.ChangeBounds;
24 import android.transition.Scene;
25 import android.transition.Transition;
26 import android.transition.TransitionSet;
27 import android.transition.TransitionManager;
36 Transition mTransition;
  /developers/build/prebuilts/gradle/AdapterTransition/Application/src/main/java/com/example/android/adaptertransition/
AdapterTransitionFragment.java 22 import android.transition.AutoTransition;
23 import android.transition.Scene;
24 import android.transition.Transition;
25 import android.transition.TransitionManager;
41 public class AdapterTransitionFragment extends Fragment implements Transition.TransitionListener {
44 * Since the transition framework requires all relevant views in a view hierarchy to be marked
60 * This is where we carry out the transition.
66 * using the transition framework.
150 public void onTransitionStart(Transition transition)
    [all...]
  /developers/samples/android/ui/transition/AdapterTransition/Application/src/main/java/com/example/android/adaptertransition/
AdapterTransitionFragment.java 22 import android.transition.AutoTransition;
23 import android.transition.Scene;
24 import android.transition.Transition;
25 import android.transition.TransitionManager;
41 public class AdapterTransitionFragment extends Fragment implements Transition.TransitionListener {
44 * Since the transition framework requires all relevant views in a view hierarchy to be marked
60 * This is where we carry out the transition.
66 * using the transition framework.
150 public void onTransitionStart(Transition transition)
    [all...]
  /development/samples/browseable/AdapterTransition/src/com.example.android.adaptertransition/
AdapterTransitionFragment.java 22 import android.transition.AutoTransition;
23 import android.transition.Scene;
24 import android.transition.Transition;
25 import android.transition.TransitionManager;
41 public class AdapterTransitionFragment extends Fragment implements Transition.TransitionListener {
44 * Since the transition framework requires all relevant views in a view hierarchy to be marked
60 * This is where we carry out the transition.
66 * using the transition framework.
150 public void onTransitionStart(Transition transition)
    [all...]

Completed in 801 milliseconds

1 2 3 4 5 6