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

1 2 3

  /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...]
LL1Analyzer.java 199 if ( s.transition[0] instanceof RuleClosureTransition ) {
200 System.out.println("go to rule "+((NFAState)s.transition[0].target).enclosingRule);
218 Transition transition0 = s.transition[0];
232 // compute FIRST of transition 0
234 // if transition 0 is a rule call and we don't want FOLLOW, check cache
242 // save FIRST cache for transition 0 if rule call
270 Transition transition1 = s.transition[1];
314 Transition transition0 = s.transition[0]
    [all...]
MachineProbe.java 64 Transition e = startState.getTransition(i);
87 Transition e = d.getTransition(j);
128 Transition t = p.transition(j);
  /packages/apps/VideoEditor/src/com/android/videoeditor/service/
MovieTheme.java 22 import android.media.videoeditor.Transition;
50 Transition.BEHAVIOR_SPEED_UP),
52 Transition.BEHAVIOR_LINEAR),
54 Transition.BEHAVIOR_SPEED_DOWN),
63 Transition.BEHAVIOR_SPEED_UP),
65 Transition.BEHAVIOR_LINEAR, R.raw.mask_diagonal, 50, false),
67 Transition.BEHAVIOR_SPEED_DOWN),
77 Transition.BEHAVIOR_SPEED_UP),
79 Transition.BEHAVIOR_LINEAR),
81 Transition.BEHAVIOR_SPEED_DOWN)
    [all...]
  /external/chromium/chrome/browser/history/
visit_tracker.h 19 // transition type properly.
40 // Returns the visit ID for the transition given information about the visit
46 struct Transition {
51 typedef std::vector<Transition> TransitionList;
54 // Expires oldish items in the given transition list. This keeps the list
visit_tracker.cc 79 Transition t;
  /frameworks/base/media/java/android/media/videoeditor/
TransitionCrossfade.java 22 * This class allows to render a crossfade (dissolve) effect transition between
26 public class TransitionCrossfade extends Transition {
39 * @param transitionId The transition id
40 * @param afterMediaItem The transition is applied to the end of this
42 * @param beforeMediaItem The transition is applied to the beginning of
44 * @param durationMs duration of the transition in milliseconds
45 * @param behavior behavior is one of the behavior defined in Transition
TransitionFadeBlack.java 22 * This class is used to render a fade to black and fade from black transition
26 public class TransitionFadeBlack extends Transition {
39 * @param transitionId The transition id
40 * @param afterMediaItem The transition is applied to the end of this
42 * @param beforeMediaItem The transition is applied to the beginning of
44 * @param durationMs duration of the transition
45 * @param behavior behavior is one of the behavior defined in Transition
TransitionSliding.java 23 public class TransitionSliding extends Transition {
49 * @param transitionId The transition id
50 * @param afterMediaItem The transition is applied to the end of this
52 * @param beforeMediaItem The transition is applied to the beginning of
54 * @param durationMs duration of the transition in milliseconds
55 * @param behavior behavior is one of the behavior defined in Transition
  /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...]
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractService.java 44 private final Transition startup = new Transition();
45 private final Transition shutdown = new Transition();
139 * started. It will cause the service to transition from {@link
168 * stopped. It will cause the service to transition from {@link
192 * Invoke this method to transition the service to the
245 private class Transition extends AbstractFuture<State> {
  /frameworks/base/services/input/
PointerController.h 68 enum Transition {
76 virtual void fade(Transition transition) = 0;
82 virtual void unfade(Transition transition) = 0;
165 virtual void fade(Transition transition);
166 virtual void unfade(Transition transition);
  /external/icu4c/i18n/
rbtz.cpp 23 * A struct representing a time zone transition
25 struct Transition {
167 // Build the transition array which represents historical time zone
229 // Check if one of final rules has earlier transition date
257 Transition *trst = (Transition*)uprv_malloc(sizeof(Transition));
280 // Append the first transition for each
291 Transition *final0 = (Transition*)uprv_malloc(sizeof(Transition))
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
ACyclicDFACodeGenerator.java 99 Transition edge = (Transition) s.transition(i);
172 Transition predEdge = (Transition)EOTTarget.transition(i);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
FASerializer.java 122 // visit nodes pointed to by each transition;
124 Transition edge = (Transition) s.transition(i);
126 // if this transition is a rule reference, the node "following" this state
150 // depth first walk each transition, printing its edge first
152 Transition edge = (Transition) s.transition(i);
190 // walk this transition
    [all...]
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...]
  /external/skia/legacy/src/animator/
SkDisplayApply.h 26 enum Transition {
89 Transition transition; member in class:SkApply
SkAnimateActive.h 53 SkApply::Transition fTransition;
  /external/skia/src/animator/
SkDisplayApply.h 26 enum Transition {
89 Transition transition; member in class:SkApply
SkAnimateActive.h 53 SkApply::Transition fTransition;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/videoeditor/
VideoEditorAPITest.java 33 import android.media.videoeditor.Transition;
114 assertNull("Media Video Begin transition",
116 assertNull("Media Video End transition",
377 * To Test the Media Video API : Get Before and after transition
389 assertNull("Begin Transition", mediaVideoItem1.getBeginTransition());
390 assertNull("End Transition", mediaVideoItem1.getEndTransition());
394 null, 0, Transition.BEHAVIOR_SPEED_UP);
396 assertEquals("Begin transition", transition1,
399 assertNotNull("End Transition", mediaVideoItem1.getEndTransition());
408 "transition2", null,mediaVideoItem1, 0, Transition.BEHAVIOR_LINEAR)
    [all...]

Completed in 1131 milliseconds

1 2 3