/external/bison/src/ |
state.h | 54 Each transition structure describes the possible transitions out 56 contains a vector of numbers of the states that transitions can go 61 deletes transitions by having them point to zero. 108 | Transitions. | 115 } transitions; typedef in typeref:struct:__anon5010 119 TRANSITIONS->states[Num]? Can be a token (amongst which the error 122 #define TRANSITION_SYMBOL(Transitions, Num) \ 123 (Transitions->states[Num]->accessing_symbol) 125 /* Is the TRANSITIONS->states[Num] a shift? (as opposed to gotos). */ 127 #define TRANSITION_IS_SHIFT(Transitions, Num) 202 transitions *transitions; member in struct:state [all...] |
/external/llvm/utils/TableGen/ |
DFAPacketizerEmitter.cpp | 78 // A State instance also contains a collection of transitions from that state: 91 mutable TransitionMap Transitions; 105 // transitions. 164 assert(!Transitions.count(InsnClass) && 165 "Cannot have multiple transitions for the same input"); 166 Transitions[InsnClass] = To; 174 return Transitions.count(InsnClass) > 0; 261 // transitions. 269 // This table provides a map to the beginning of the transitions for State s 276 // Tracks the total valid transitions encountered so far. It is use [all...] |
CodeGenSchedule.cpp | [all...] |
SubtargetEmitter.cpp | 854 TI = SCI->Transitions.begin(), TE = SCI->Transitions.end(); [all...] |
CodeGenSchedule.h | 137 std::vector<CodeGenSchedTransition> Transitions;
|
/external/chromium_org/third_party/cython/src/Cython/Plex/ |
DFA.py | 11 from Transitions import TransitionMap 20 # the epsilon-closure of each initial old state. Then we give transitions 21 # to each new state which are the union of all transitions out of any 38 transitions = TransitionMap() 40 for event, old_target_states in old_state.transitions.iteritems(): 42 transitions.add_set(event, set_epsilon_closure(old_target_states)) 43 for event, old_states in transitions.iteritems(): 81 state_set_2 = state.transitions.get_epsilon() 150 from Transitions import state_set_str
|
Machines.py | 11 from Transitions import TransitionMap 61 transitions = None # TransitionMap variable in class:Node 68 # Preinitialise the list of empty transitions, because 70 #self.transitions = {'':[]} 71 self.transitions = TransitionMap() 76 self.transitions = None 81 self.transitions.add(event, new_state) 110 # Transitions 112 self.transitions.dump(file) 148 for event, old_state_set in old_state.transitions.iteritems() [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
Transitions.java | 29 * {@link android.transition transitions} APIs. Scenes and a TransitionManager 30 * are loaded from resource files and transitions are run between those scenes 33 public class Transitions extends Activity {
|
/external/chromium_org/chrome/tools/ |
history-viz.py | 86 the .transitions array.""" 90 self.transitions = [] 92 def Transitions(self): 95 for trans in self.transitions: 172 edge.transitions.append(trans) 212 # Gather up all the transitions into the label. 214 transitions = edge.Transitions() 215 for trans, count in transitions.items(): 237 # If the edge is from the start and the transitions are fishy, make i [all...] |
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
chatroommoduleimpl.cc | 428 StateTransitionDescription Transitions[] = { 555 for (int i=0; i < ARRAY_SIZE(Transitions); i++) { 556 if (Transitions[i].old_state == old_state && 557 Transitions[i].new_state == new_state) { 558 transition_desc = &Transitions[i];
|
/external/oprofile/events/i386/westmere/ |
unit_masks | 91 0x01 to_fp Transitions from MMX to Floating Point instructions 92 0x02 to_mmx Transitions from Floating Point to MMX instructions 93 0x03 any All Floating Point to and from MMX transitions
|
/external/chromium_org/chrome/browser/resources/chromeos/first_run/ |
first_run.js | 11 // Transitions durations. 55 // Whether animated transitions are enabled. 255 * Returns default duration of animated transitions, in ms. 262 * Returns duration of transitions of background shield, in ms.
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/ |
mootools-1.2.2-core-nc.js | [all...] |
concat-jquery-mootools-prototype.js | [all...] |