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

1 2

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/util/
Transition.java 21 * Class representing transition between two {@link State}.
23 public class Transition {
28 public Transition(State source, @StateMachine.Event int event, State destination) {
  /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...]
  /frameworks/native/services/inputflinger/
PointerControllerInterface.h 61 enum Transition {
69 virtual void fade(Transition transition) = 0;
75 virtual void unfade(Transition transition) = 0;
  /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"]:
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
StateManager.java 63 StateTransitionAnimation.Transition.Incoming);
93 StateTransitionAnimation.Transition.Incoming);
211 StateTransitionAnimation.Transition.Outgoing);
238 StateTransitionAnimation.Transition.Incoming);
  /frameworks/support/leanback/src/main/java/androidx/leanback/util/
StateMachine.java 27 * {@link State#mBranchStart} is false, only first outgoing Transition will be triggered.
29 * State to run. When {@link State#mBranchEnd} is false, only need one incoming Transition triggered
31 * Transition: three types:
32 * 1. Event based transition, transition will be triggered when {@link #fireEvent(Event)} is called.
33 * 2. Auto transition, transition will be triggered when {@link Transition#mFromState} is executed.
34 * 3. Condiitonal Auto transition, transition will be triggered when {@link Transition#mFromState
281 Transition transition = new Transition(fromState, toState, event); local
292 Transition transition = new Transition(fromState, toState, condition); local
303 Transition transition = new Transition(fromState, toState); local
    [all...]
  /frameworks/support/transition/src/main/java/androidx/transition/
Styleable.java 17 package androidx.transition;
58 android.R.attr.transition,
67 int TRANSITION = 2;
71 static final int[] TRANSITION = {
78 interface Transition {
Transition.java 17 package androidx.transition;
59 * A Transition holds information about animations that will be run on its
62 * perform custom animations themselves. Any Transition has two main jobs:
64 * captured property values. A custom transition knows what property values
66 * changes to those values. For example, the {@link Fade} transition tracks
80 * <p>Transitions can be declared in XML resource files inside the <code>res/transition</code>
81 * directory. Transition resources consist of a tag name for one of the Transition
82 * subclasses along with attributes to define some of the attributes of that transition.
84 * transition:</p
    [all...]
  /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) {
  /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...]
  /frameworks/base/services/backup/java/com/android/server/backup/transport/
TransportClient.java 470 log(Priority.ERROR, "Unexpected state transition IDLE => UNUSABLE");
517 if (bound != Transition.NO_TRANSITION) {
518 int value = (bound == Transition.UP) ? 1 : 0; // 1 is bound, 0 is not bound
521 if (connected != Transition.NO_TRANSITION) {
522 int value = (connected == Transition.UP) ? 1 : 0; // 1 is connected, 0 is not connected
531 * <li>{@link Transition#UP}, if oldState < stateReference <= newState
532 * <li>{@link Transition#DOWN}, if oldState >= stateReference > newState
533 * <li>{@link Transition#NO_TRANSITION}, otherwise
535 @Transition
539 return Transition.UP
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9anim.h 149 D3DXTRANSITION_TYPE Transition;
347 double start_time, double duration, D3DXTRANSITION_TYPE transition) PURE;
349 double start_time, double duration, D3DXTRANSITION_TYPE transition) PURE;
353 double start_time, double duration, D3DXTRANSITION_TYPE transition) PURE;
  /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 122 // A transition from one ZoneType to another
124 struct Transition {
127 Transition(int64_t _time, int32_t _type) {
165 vector<Transition> transitions;
335 // Used temporarily to store transition times and types. We need
341 // Read transition times
350 // Read transition types
371 // Preserve the latest transition before the 32bit minimum time
375 // Skipping the rest of the transition data. We cannot put such
380 info.transitions.push_back(Transition(transitionTimes[i], transitionTypes[i]))
    [all...]
  /external/v8/src/ic/
ic.cc 156 // Reserve enough space for IC transition state, the longest length is 17.
305 case LookupIterator::TRANSITION:
347 // would transition to.
1935 Handle<Map> transition = lookup->transition_map(); local
    [all...]
  /frameworks/base/core/java/android/transition/
Transition.java 17 package android.transition;
51 * A Transition holds information about animations that will be run on its
54 * perform custom animations themselves. Any Transition has two main jobs:
56 * captured property values. A custom transition knows what property values
58 * changes to those values. For example, the {@link Fade} transition tracks
72 * <p>Transitions can be declared in XML resource files inside the <code>res/transition</code>
73 * directory. Transition resources consist of a tag name for one of the Transition
74 * subclasses along with attributes to define some of the attributes of that transition.
75 * For example, here is a minimal resource file that declares a {@link ChangeBounds} transition
2359 Transition transition; field in class:Transition.AnimationInfo
    [all...]
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/v8/src/
objects.cc 4147 Map* transition = TransitionArray::SearchTransition( local
4777 Map* transition = nullptr; local
7677 Map* transition = local
    [all...]
  /prebuilts/maven_repo/bumptech/com/github/bumptech/glide/glide/SNAPSHOT/
glide-SNAPSHOT.jar 
  /prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4-runtime/4.5/
antlr4-runtime-4.5.jar 
  /external/caliper/lib/
joda-time-2.1.jar 
  /prebuilts/tools/common/m2/repository/joda-time/joda-time/2.8.1/
joda-time-2.8.1.jar 
  /prebuilts/tools/common/m2/repository/joda-time/joda-time/2.9.1/
joda-time-2.9.1.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 

Completed in 717 milliseconds

1 2