HomeSort by relevance Sort by last modified time
    Searched defs:transitions (Results 1 - 13 of 13) 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:__anon1503
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...]
  /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;
  /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 311 int transcount; /* the number of chars in char counted transitions */
450 int *transitions; local
460 * 3/ build a table state x atom for the transitions
532 transitions = (int *) xmlMalloc((nbstates + 1) *
534 if (transitions == NULL) {
541 memset(transitions, 0, (nbstates + 1) * (nbatoms + 1) * sizeof(int));
559 transitions[stateno * (nbatoms + 1)] = state->type;
579 * if the same atom can generate transitions to 2 different
583 prev = transitions[stateno * (nbatoms + 1) + atomno + 1];
594 xmlFree(transitions);
    [all...]
  /cts/tools/dasm/etc/
java_cup-new.jar 
java_cup.jar 
java_cup.jar.old 
  /external/v8/src/
objects.cc 4263 int transitions = 0; 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...]

Completed in 390 milliseconds