HomeSort by relevance Sort by last modified time
    Searched defs:transitions (Results 1 - 18 of 18) sorted by null

  /packages/apps/VideoEditor/src/com/android/videoeditor/
TransitionType.java 48 * Get transitions for the specified category
52 * @return The array of transitions of the specified category
55 final TransitionType[] transitions = new TransitionType[8]; local
56 transitions[0] = new TransitionType(
59 transitions[1] = new TransitionType(
62 transitions[2] = new TransitionType(
65 transitions[3] = new TransitionType(
68 transitions[4] = new TransitionType(
71 transitions[5] = new TransitionType(
74 transitions[6] = new TransitionType
    [all...]
TransitionsActivity.java 88 final TransitionType[] transitions = mAdapter.getTransitions(); local
89 for (int i = 0; i < transitions.length; i++) {
90 if (transitions[i].getType() == transitionType) {
  /external/bison/src/
state.h 56 Each transition structure describes the possible transitions out
58 contains a vector of numbers of the states that transitions can go
63 deletes transitions by having them point to zero.
111 | Transitions. |
118 } transitions; typedef in typeref:struct:__anon1899
122 TRANSITIONS->states[Num]? Can be a token (amongst which the error
125 #define TRANSITION_SYMBOL(Transitions, Num) \
126 (Transitions->states[Num]->accessing_symbol)
128 /* Is the TRANSITIONS->states[Num] a shift? (as opposed to gotos). */
130 #define TRANSITION_IS_SHIFT(Transitions, Num)
202 transitions *transitions; member in struct:state
    [all...]
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/
PhotoView.java 41 private AnimationPair transitions; field in class:PhotoView
113 if (transitions == null) {
117 // Clear old running transitions.
123 transitions.first().setAnimationListener(new Animation.AnimationListener() {
139 if ((transitions != null) && (animation == transitions.first())) {
140 startAnimation(transitions.second());
146 transitions.second().setAnimationListener(new Animation.AnimationListener() {
168 startAnimation(transitions.first());
189 if (transitions != null)
    [all...]
  /bionic/libc/tools/zoneinfo/
ZoneInfo.java 58 int[] transitions = new int[ntransition]; local
60 transitions[i] = read4(data, base + 4 * i);
79 return new ZoneInfo(name, transitions, type, gmtoff, isdst, abbrev, data, base);
89 /*package*/ ZoneInfo(String name, int[] transitions, byte[] type,
92 mTransitions = transitions;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DFAState.java 74 /** Track the transitions emanating from this DFA state. The List
77 protected List<Transition> transitions = field in class:DFAState
156 * can easily check for non-epsilon transitions because the only
159 * for all possible transitions. That is of the order: size(label space)
177 return (Transition)transitions.get(i);
181 return transitions.size();
185 transitions.add(t);
192 transitions.add( new Transition(label, target) );
193 return transitions.size()-1;
197 return transitions.get(trans)
    [all...]
  /libcore/luni/src/main/java/libcore/util/
ZoneInfoDB.java 208 int[] transitions = new int[tzh_timecnt]; local
209 data.readIntArray(transitions, 0, transitions.length);
229 return new ZoneInfo(id, transitions, type, gmtOffsets, isDsts);
  /cts/tools/dasm/src/java_cup/
lalr_state.java 9 * A state consists of an LALR item set and a set of transitions to other
138 /** List of transitions out of this state. */
141 /** List of transitions out of this state. */
142 public lalr_transition transitions() {return _transitions;} method in class:lalr_state
237 * it attempts to extend the machine by creating transitions out of
432 * are indexed by terminal symbols and correspond to either transitions
436 * reduce-goto table is indexed by non terminals and represents transitions
511 for (lalr_transition trans=transitions(); trans!=null; trans=trans.next())
738 /* do the transitions */
739 for (tr = transitions(); tr != null; tr = tr.next()
    [all...]
  /external/icu4c/tools/tzcode/
tz2icu.cpp 157 // A collection of transitions from one ZoneType to another, together
159 // list of transitions between a smaller list of ZoneTypes.
164 vector<Transition> transitions; member in struct:ZoneInfo
362 // Build transitions vector out of corresponding times and types.
375 // transitions into zoneinfo.res, because data is limited to singed
379 info.transitions.push_back(Transition(transitionTimes[i], transitionTypes[i]));
384 // If there are any transitions before the 32bit minimum time,
386 vector<Transition>::iterator itr = info.transitions.begin();
387 info.transitions.insert(itr, Transition(LOWEST_TIME32, transitionTypes[minidx]));
395 info.transitions.push_back(Transition(transitionTimes[i], transitionTypes[i]))
    [all...]
  /external/libxml2/
xmlregexp.c 315 int transcount; /* the number of chars in char counted transitions */
457 int *transitions; local
467 * 3/ build a table state x atom for the transitions
539 transitions = (int *) xmlMalloc((nbstates + 1) *
541 if (transitions == NULL) {
548 memset(transitions, 0, (nbstates + 1) * (nbatoms + 1) * sizeof(int));
566 transitions[stateno * (nbatoms + 1)] = state->type;
586 * if the same atom can generate transitions to 2 different
590 prev = transitions[stateno * (nbatoms + 1) + atomno + 1];
601 xmlFree(transitions);
    [all...]
  /cts/tools/dasm/etc/
java_cup-new.jar 
java_cup.jar 
java_cup.jar.old 
  /external/v8/src/
objects.cc 8620 int transitions = NumberOfProtoTransitions() + 1; local
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.h 750 const AnimationList* transitions() const { return rareNonInheritedData->m_transitions.get(); } function in class:WebCore::RenderStyle
    [all...]
  /external/zxing/core/
core.jar 
  /external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar 
  /prebuilt/common/antlr/
antlr-3.4-complete.jar 

Completed in 536 milliseconds