HomeSort by relevance Sort by last modified time
    Searched refs:Transition (Results 101 - 125 of 184) sorted by null

1 2 3 45 6 7 8

  /cts/tests/tests/transition/src/android/transition/cts/
TransitionTest.java 16 package android.transition.cts;
23 import android.transition.ArcMotion;
24 import android.transition.AutoTransition;
25 import android.transition.ChangeBounds;
26 import android.transition.PathMotion;
27 import android.transition.Scene;
28 import android.transition.Transition;
29 import android.transition.Transition.EpicenterCallback
399 CaptureAnimatorTransition transition = new CaptureAnimatorTransition(); local
428 CaptureAnimatorTransition transition = new CaptureAnimatorTransition(); local
471 CaptureAnimatorTransition transition = new CaptureAnimatorTransition(); local
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSanity.java 32 import org.antlr.analysis.Transition;
79 /** From state s, look for any transition to a rule that is currently
83 * rule must look at follow transition for that invoking state.
104 Transition t0 = s.transition[0];
146 // now do the other transition if it exists
147 Transition t1 = s.transition[1];
RandomPhrase.java 34 import org.antlr.analysis.Transition;
89 (RuleClosureTransition)invokingState.transition[0];
96 Transition t0 = state.transition[0];
121 Transition t = altStartState.transition[0];
Interpreter.java 276 s = (NFAState)alt.transition[0].target;
293 (RuleClosureTransition)invokingState.transition[0];
299 Transition trans = s.transition[0];
311 // CASE 3: epsilon transition
326 // CASE 3b: plain old epsilon transition, just move
332 // CASE 4: match label on transition
341 s = (NFAState)s.transition[0].target;
398 Transition eotTransition = null;
407 Transition t = s.transition(i)
    [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...]
Visibility.java 17 package android.transition;
35 * This transition tracks changes to the visibility of target views in the
47 public abstract class Visibility extends Transition {
59 * Mode used in {@link #setMode(int)} to make the transition
66 * Mode used in {@link #setMode(int)} to make the transition
102 * This tells the Visibility transition to suppress layout during the transition and release
103 * the suppression after 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 o
    [all...]
ChangeTransform.java 16 package android.transition;
36 * This Transition captures scale and rotation for Views before and after the
37 * scene change and animates those changes during the transition.
41 * transition.
43 public class ChangeTransform extends Transition {
121 * @return <code>true</code> when a changed parent should execute the transition
143 * @return <code>true</code> when a changed parent should execute the transition
375 Transition outerTransition = this;
467 private static class GhostListener extends Transition.TransitionListenerAdapter {
479 public void onTransitionEnd(Transition transition)
    [all...]
ChangeClipBounds.java 16 package android.transition;
29 * scene change and animates those changes during the transition.
31 public class ChangeClipBounds extends Transition {
Recolor.java 17 package android.transition;
30 * This transition tracks changes during scene changes to the
40 public class Recolor extends Transition {
TransitionUtils.java 17 package android.transition;
53 public static Transition mergeTransitions(Transition... transitions) {
ChangeBounds.java 17 package android.transition;
45 * This transition captures the layout bounds of target views before and after
46 * the scene change and animates those changes during the transition.
48 * <p>A ChangeBounds transition can be described in a resource file by using the
51 * attributes of {@link android.R.styleable#Transition}.</p>
53 public class ChangeBounds extends Transition {
192 * {@link android.transition.ChangeClipBounds} is not compatible with ChangeBounds
218 * of every view using this transition. The flag is not enabled by
221 * the transition to determine which parents are the same.
223 * @param reparent true if the transition should track the paren
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
MenuPopupWindow.java 30 import android.transition.Transition;
84 mPopup.setEnterTransition((Transition) enterTransition);
90 mPopup.setExitTransition((Transition) exitTransition);
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
StateTransitionAnimation.java 77 private static Spec specForTransition(Transition t) {
92 public static enum Transition { None, Outgoing, Incoming, PhotoIncoming }
103 public StateTransitionAnimation(Transition t, RawTexture oldScreen) {
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/
FadeAndShortSlide.java 22 import android.transition.Fade;
23 import android.transition.Transition;
24 import android.transition.TransitionValues;
25 import android.transition.Visibility;
278 public Transition addListener(TransitionListener listener) {
284 public Transition removeListener(TransitionListener listener) {
290 public Transition clone() {
297 public Transition setDuration(long duration) {
  /frameworks/base/graphics/java/android/graphics/drawable/
AnimatedStateListDrawable.java 42 * keyframes may optionally be defined using transition elements.
47 * <code>&lt;transition></code> element.
66 private static final String ELEMENT_TRANSITION = "transition";
71 /** The currently running transition, if any. */
72 private Transition mTransition;
74 /** Index to be set after the transition ends. */
119 * Adds a new transition between keyframes.
123 * @param transition An {@link Animatable} drawable to use as a transition, may not be null
124 * @param reversible Whether the transition can be reverse
207 final Transition transition; local
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
tz2icu.cpp 121 // A transition from one ZoneType to another
123 struct Transition {
126 Transition(int64_t _time, int32_t _type) {
164 vector<Transition> transitions;
334 // Used temporarily to store transition times and types. We need
340 // Read transition times
349 // Read transition types
370 // Preserve the latest transition before the 32bit minimum time
374 // Skipping the rest of the transition data. We cannot put such
379 info.transitions.push_back(Transition(transitionTimes[i], transitionTypes[i]))
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/
TvTransitionManager.java 22 import android.transition.Fade;
23 import android.transition.Scene;
24 import android.transition.Transition;
25 import android.transition.TransitionInflater;
26 import android.transition.TransitionManager;
27 import android.transition.TransitionSet;
28 import android.transition.TransitionValues;
97 // When transition is null, transition got stuck without calling endTransitions
211 Transition transition = ti.inflateTransition(R.transition.transition_between_scenes); local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
test_bucket.py 37 from boto.s3.lifecycle import Transition
216 self.assertEqual(actual_lifecycle.transition, None)
220 transition = Transition(days=30, storage_class='GLACIER')
222 transition=transition)
226 transition = response[0].transition
227 self.assertEqual(transition.days, 30)
228 self.assertEqual(transition.storage_class, 'GLACIER'
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/s3/
lifecycle.py 42 :ivar transition: An instance of `Transition`. This indicates
43 when to transition to a different storage class.
47 transition=None):
57 self.transition = transition
63 if name == 'Transition':
64 self.transition = Transition()
65 return self.transition
    [all...]
  /external/v8/tools/
trace-maps-processor.py 16 "count Count most frequent transition reasons\n" % sys.argv[0])
37 class Transition(object):
80 print("// warning: already have a transition from %s to %s, reason: %s" %
83 targets[to_map] = Transition(from_map, to_map, reason)
106 AddMap(to_map, "<transition> (%s)" % event)
108 if event in ["Transition", "NoTransition"]:
  /frameworks/base/core/java/android/app/
ActivityTransitionState.java 20 import android.transition.Transition;
87 * Has an exit transition been started? If so, we don't want to double-exit.
92 * Postpone painting and starting the enter transition until this is false.
97 * Potential exit transition coordinators.
298 Transition enterViewsTransition = null;
  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java 29 import android.transition.Transition;
30 import android.transition.Transition.TransitionListener;
31 import android.transition.TransitionValues;
152 Transition enterTransition = new CustomTransition();
153 Transition exitTransition = new CustomTransition();
166 public static class CustomTransition extends Transition {
170 // This constructor is needed for reflection-based creation of a transition when
171 // the transition is defined in layout XML via attribute
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
TreeToNFAConverter.g 125 while ( end.transition( 1 ) != null )
127 end = (NFAState)end.transition( 1 ).target;
129 if ( end.transition( 0 ) != null )
134 Transition e = new Transition( Label.EPSILON, n );
138 Transition followEdge = new Transition( Label.EPSILON, following );
245 start.addTransition(new Transition(Label.EPSILON, g.left));
259 g.right.addTransition(new Transition(Label.EPSILON,end));
432 NFAState altBlockState = (NFAState)$g.left.transition(0).target
    [all...]
  /frameworks/base/core/java/com/android/internal/policy/
PhoneWindow.java 85 import android.transition.Scene;
86 import android.transition.Transition;
87 import android.transition.TransitionInflater;
88 import android.transition.TransitionManager;
89 import android.transition.TransitionSet;
127 private static final Transition USE_DEFAULT_TRANSITION = new TransitionSet();
270 private Transition mEnterTransition = null;
271 private Transition mReturnTransition = USE_DEFAULT_TRANSITION;
272 private Transition mExitTransition = null
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAToDFAConverter.java 130 * transition is actually the exit branch of the loop. Rather than make
136 * when nongreedy and EOT transition. Make state with EOT emanating
159 closure((NFAState)alt.transition[0].target,
169 closure((NFAState)alt.transition[0].target,
181 if ( alt.transition[1] ==null ) {
184 alt = (NFAState)alt.transition[1].target;
196 /** From this node, add a d--a-->t transition for all
232 // When a loop is nongreedy and we find an EOT transition, the DFA
344 /** Add a transition from state d to targetState with label in normal case.
418 Transition oldTransition = (Transition)targetToLabelMap.get(tI)
    [all...]

Completed in 1264 milliseconds

1 2 3 45 6 7 8