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

1 2 3 4

  /external/antlr/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<Transition> {
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) {
73 Transition other = (Transition)o;
79 public int compareTo(Transition other)
    [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? */
118 public void addTransition(Transition e) {
120 throw new IllegalArgumentException("You can't add a null transition");
122 if ( numTransitions>transition.length ) {
123 throw new IllegalArgumentException("You can only have "+transition.length+" transitions");
126 transition[numTransitions] = e;
141 * transition another state has
153 public Transition transition(int i) { method in class:NFAState
    [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...]
  /cts/tests/tests/transition/src/android/transition/cts/
TransitionSetTest.java 16 package android.transition.cts;
30 import android.transition.ArcMotion;
31 import android.transition.ChangeBounds;
32 import android.transition.Fade;
33 import android.transition.PathMotion;
34 import android.transition.Transition;
35 import android.transition.TransitionPropagation;
36 import android.transition.TransitionSet;
37 import android.transition.TransitionValues
    [all...]
TransitionInflaterTest.java 16 package android.transition.cts;
27 import android.transition.ArcMotion;
28 import android.transition.AutoTransition;
29 import android.transition.ChangeBounds;
30 import android.transition.ChangeClipBounds;
31 import android.transition.ChangeImageTransform;
32 import android.transition.ChangeScroll;
33 import android.transition.ChangeTransform;
34 import android.transition.Explode;
35 import android.transition.Fade
65 Transition transition = inflater.inflateTransition(R.transition.transition_constructors); local
104 Transition transition = transitionManager.getTransition(scene1); local
    [all...]
PropagationTest.java 16 package android.transition.cts;
22 import android.transition.CircularPropagation;
23 import android.transition.SidePropagation;
24 import android.transition.Transition;
25 import android.transition.TransitionValues;
65 mTransition.setEpicenterCallback(new Transition.EpicenterCallback() {
67 public Rect onGetEpicenter(Transition transition) {
93 mTransition.setEpicenterCallback(new Transition.EpicenterCallback()
    [all...]
TargetActivity.java 16 package android.transition.cts;
23 import android.transition.Transition;
24 import android.transition.Transition.TransitionListener;
25 import android.transition.TransitionListenerAdapter;
28 import com.android.compatibility.common.util.transition.TrackingTransition;
29 import com.android.compatibility.common.util.transition.TrackingVisibility;
93 public void onTransitionStart(Transition transition) {
    [all...]
BaseTransitionTest.java 16 package android.transition.cts;
30 import android.transition.Scene;
31 import android.transition.Transition;
32 import android.transition.TransitionManager;
33 import android.transition.TransitionValues;
34 import android.transition.Visibility;
58 protected Transition mTransition;
59 protected Transition.TransitionListener mListener;
73 mListener = mock(Transition.TransitionListener.class)
    [all...]
TransitionTest.java 16 package android.transition.cts;
42 import android.transition.ArcMotion;
43 import android.transition.AutoTransition;
44 import android.transition.ChangeBounds;
45 import android.transition.CircularPropagation;
46 import android.transition.PathMotion;
47 import android.transition.Scene;
48 import android.transition.Transition;
49 import android.transition.Transition.EpicenterCallback
438 Transition transition = new AutoTransition(); local
474 CaptureAnimatorTransition transition = new CaptureAnimatorTransition(); local
506 CaptureAnimatorTransition transition = new CaptureAnimatorTransition(); local
550 Transition transition = new ChangeBounds(); local
627 CaptureAnimatorTransition transition = new CaptureAnimatorTransition(); local
649 CheckTransitionValuesTransition transition = new CheckTransitionValuesTransition(); local
683 TransitionPropertiesTransition transition = new TransitionPropertiesTransition(false); local
    [all...]
  /cts/tests/app/app/src/android/app/stubs/
FragmentTestActivity.java 24 import android.transition.Transition;
25 import android.transition.Transition.TransitionListener;
26 import android.transition.TransitionInflater;
59 android.R.transition.explode,
60 android.R.transition.explode,
61 android.R.transition.fade,
62 android.R.transition.fade,
63 android.R.transition.move
150 Transition transition = TransitionInflater.from(getActivity()).inflateTransition(id); local
    [all...]
  /cts/tests/tests/app.usage/src/android/app/usage/cts/
ActivityTransitionActivity.java 27 import android.transition.ChangeBounds;
28 import android.transition.Explode;
29 import android.transition.Fade;
30 import android.transition.Transition;
31 import android.transition.Transition.TransitionListener;
32 import android.transition.TransitionListenerAdapter;
39 * A simple activity containing the start state for an Activity Transition
120 public void onTransitionEnd(Transition transition)
136 final Transition transition = isExplode ? new Explode() : new Fade(); local
143 final Transition transition = isExplode ? new Explode() : new Fade(); local
    [all...]
  /cts/tests/fragment/src/android/fragment/cts/
TransitionFragment.java 26 import com.android.compatibility.common.util.transition.TrackingTransition;
27 import com.android.compatibility.common.util.transition.TrackingVisibility;
31 import android.transition.Transition;
47 private Transition.TransitionListener mListener = mock(Transition.TransitionListener.class);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/transition/
TrackingTransition.java 16 package com.android.compatibility.common.util.transition;
20 import android.transition.Transition;
21 import android.transition.TransitionValues;
28 * A transition that tracks which targets are applied to it.
38 public class TrackingTransition extends Transition implements TargetTracking {
  /cts/common/device-side/util-axt/src/com/android/compatibility/common/util/transition/
TrackingTransition.java 16 package com.android.compatibility.common.util.transition;
20 import android.transition.Transition;
21 import android.transition.TransitionValues;
28 * A transition that tracks which targets are applied to it.
38 public class TrackingTransition extends Transition implements TargetTracking {
  /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...]
  /external/icu/icu4c/source/i18n/
rbtz.cpp 26 * A struct representing a time zone transition
28 struct Transition {
185 // Build the transition array which represents historical time zone
247 // Check if one of final rules has earlier transition date
275 Transition *trst = (Transition*)uprv_malloc(sizeof(Transition));
298 // Append the first transition for each
309 Transition *final0 = (Transition*)uprv_malloc(sizeof(Transition))
    [all...]
  /external/antlr/tool/src/main/java/org/antlr/tool/
NFAFactory.java 92 Transition t = s.transition[0];
98 // bypass epsilon transition and point to what the epsilon's
99 // target points to unless that epsilon transition points to
104 epsilonTarget.transition[0] !=null )
106 s.setTransition0(epsilonTarget.transition[0]);
109 epsilonTarget.transition(0).target.stateNumber);
142 Transition e = new Transition(label,right);
156 Label label = s0.transition(0).target.transition(0).label
    [all...]
  /developers/build/prebuilts/gradle/CustomTransition/Application/src/main/java/com/example/android/customtransition/
ChangeColor.java 27 import android.transition.ChangeBounds;
28 import android.transition.Transition;
29 import android.transition.TransitionValues;
34 public class ChangeColor extends Transition {
70 // This transition can only be applied to views that are on both starting and ending scenes.
81 // This transition changes background colors for a target. It doesn't animate any other
CustomTransitionFragment.java 24 import android.transition.Scene;
25 import android.transition.Transition;
26 import android.transition.TransitionManager;
45 /** This is the custom Transition we use in this sample. */
46 private Transition mTransition;
70 // This is the custom Transition.
88 // Pass the custom Transition as second argument for TransitionManager.go
  /developers/samples/android/ui/transition/CustomTransition/Application/src/main/java/com/example/android/customtransition/
ChangeColor.java 27 import android.transition.ChangeBounds;
28 import android.transition.Transition;
29 import android.transition.TransitionValues;
34 public class ChangeColor extends Transition {
70 // This transition can only be applied to views that are on both starting and ending scenes.
81 // This transition changes background colors for a target. It doesn't animate any other
CustomTransitionFragment.java 24 import android.transition.Scene;
25 import android.transition.Transition;
26 import android.transition.TransitionManager;
45 /** This is the custom Transition we use in this sample. */
46 private Transition mTransition;
70 // This is the custom Transition.
88 // Pass the custom Transition as second argument for TransitionManager.go

Completed in 941 milliseconds

1 2 3 4