HomeSort by relevance Sort by last modified time
    Searched refs:Transition (Results 51 - 75 of 90) sorted by null

1 23 4

  /external/antlr/tool/src/main/java/org/antlr/analysis/
NFAToDFAConverter.java 130 * transition is actually the exit branch of the loop. Rather than make
136 * when nongreedy and EOT transition. Make state with EOT emanating
159 closure((NFAState)alt.transition[0].target,
169 closure((NFAState)alt.transition[0].target,
181 if ( alt.transition[1] ==null ) {
184 alt = (NFAState)alt.transition[1].target;
196 /** From this node, add a d--a-->t transition for all
232 // When a loop is nongreedy and we find an EOT transition, the DFA
267 Map<Integer, Transition> targetToLabelMap = new HashMap<Integer, Transition>();
    [all...]
DecisionProbe.java 371 NFAState isolatedAltStart = (NFAState)altStart.transition[0].target;
572 Transition transition0 = ruleInvocationState.transition[0];
722 Transition t = s.transition(i);
732 if ( targetStatus==REACHABLE_NO ) { // try another transition
775 Transition t = startState.transition(i);
829 Transition t = s.transition[i]
    [all...]
  /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"]:
  /external/antlr/tool/src/main/antlr3/org/antlr/grammar/v3/
TreeToNFAConverter.g 126 while ( end.transition( 1 ) != null )
128 end = (NFAState)end.transition( 1 ).target;
130 if ( end.transition( 0 ) != null )
135 Transition e = new Transition( Label.EPSILON, n );
139 Transition followEdge = new Transition( Label.EPSILON, following );
246 start.addTransition(new Transition(Label.EPSILON, g.left));
260 g.right.addTransition(new Transition(Label.EPSILON,end));
433 NFAState altBlockState = (NFAState)$g.left.transition(0).target
    [all...]
  /external/antlr/tool/src/main/java/org/antlr/tool/
Interpreter.java 278 s = (NFAState)alt.transition[0].target;
295 (RuleClosureTransition)invokingState.transition[0];
301 Transition trans = s.transition[0];
313 // CASE 3: epsilon transition
328 // CASE 3b: plain old epsilon transition, just move
334 // CASE 4: match label on transition
343 s = (NFAState)s.transition[0].target;
400 Transition eotTransition = null;
409 Transition t = s.transition(i)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java 43 import android.transition.Transition;
44 import android.transition.Transition.TransitionListener;
45 import android.transition.TransitionValues;
190 Transition enterTransition = new CustomTransition();
191 Transition exitTransition = new CustomTransition();
204 public static class CustomTransition extends Transition {
208 // This constructor is needed for reflection-based creation of a transition when
209 // the transition is defined in layout XML via attribute
    [all...]
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/Ia32/
SecEntry.S 42 # Transition to non-paged flat-model protected mode from a
44 # This is a bare bones transition to protected mode only
84 # Transition to 16 bit protected mode
106 # Transition to Flat 32 bit protected mode
107 # The jump to a far pointer causes the transition to 32 bit mode
SecEntry.asm 51 ; Transition to non-paged flat-model protected mode from a
53 ; This is a bare bones transition to protected mode only
92 ; Transition to 16 bit protected mode
114 ; Transition to Flat 32 bit protected mode
115 ; The jump to a far pointer causes the transition to 32 bit mode
  /device/linaro/bootloader/edk2/UefiCpuPkg/ResetVector/Vtf0/Ia16/
Real16ToFlat32.asm 3 ; Transition from 16 bit real mode into 32 bit flat protected mode
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/FspSupport/Library/SecFspPlatformSecLibVlv2/Ia32/
SecEntry.asm 50 ; Transition to non-paged flat-model protected mode from a
52 ; This is a bare bones transition to protected mode only
91 ; Transition to 16 bit protected mode
113 ; Transition to Flat 32 bit protected mode
114 ; The jump to a far pointer causes the transition to 32 bit mode
  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DFA.as 3 /** A DFA implemented as a set of transition tables.
21 protected var transition:Array; // short[][]
33 eot:Array, eof:Array, min:Array, max:Array, accept:Array, special:Array, transition:Array,
45 this.transition = transition;
94 // look for a normal char transition
97 var snext:int = transition[s][c-min[s]]; // move to next state
99 // was in range but not a normal transition
103 if ( eot[s]>=0 ) { // EOT Transition to accept state?
104 if ( debug ) trace("EOT transition");
    [all...]
  /cts/tests/tests/transition/src/android/transition/cts/
FadeTest.java 16 package android.transition.cts;
31 import android.transition.Fade;
32 import android.transition.Scene;
33 import android.transition.Transition;
34 import android.transition.TransitionListenerAdapter;
35 import android.transition.TransitionManager;
36 import android.transition.TransitionValues;
164 public void onTransitionEnd(Transition transition) {
    [all...]
ActivityTransitionTest.java 16 package android.transition.cts;
37 import android.transition.Fade;
38 import android.transition.Transition;
39 import android.transition.Transition.TransitionListener;
40 import android.transition.TransitionListenerAdapter;
48 import com.android.compatibility.common.util.transition.TargetTracking;
49 import com.android.compatibility.common.util.transition.TrackingTransition;
50 import com.android.compatibility.common.util.transition.TrackingVisibility
    [all...]
ChangeBoundsTest.java 16 package android.transition.cts;
32 import android.transition.ChangeBounds;
33 import android.transition.Scene;
34 import android.transition.Transition;
35 import android.transition.TransitionManager;
36 import android.transition.TransitionValues;
73 mListener = mock(Transition.TransitionListener.class);
179 // reverse the transition back to scene1
198 // reverse the transition back to scene
    [all...]
  /external/antlr/tool/src/main/java/org/antlr/codegen/
CodeGenerator.java 673 Transition edge = s.transition(i);
719 Transition edge,
738 Transition edge)
    [all...]
  /external/v8/src/objects/
ordered-hash-table.cc 685 void OrderedHashTableIterator<Derived, TableType>::Transition() {
721 Transition();
749 OrderedHashTableIterator<JSSetIterator, OrderedHashSet>::Transition();
761 OrderedHashTableIterator<JSMapIterator, OrderedHashMap>::Transition();
  /external/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
CodeGenPrepare.cpp     [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/Ia32/
Thunk16.S 139 # @param Transition The pointer to the transition code
162 movl 40(%esp), %eax # eax <- address of transition code
Thunk16.asm 209 ; IN OUT VOID *Transition
223 mov eax, [esp + 40] ; eax <- address of transition code
  /device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/PlatformSecLib/Ia32/
Flat32.asm 73 ; Transition to non-paged flat-model protected mode from a
75 ; This is a bare bones transition to protected mode only
112 ; Transition to 16 bit protected mode
130 ; Transition to Flat 32 bit protected mode
131 ; The jump to a far pointer causes the transition to 32 bit mode
Flat32.S 160 # Transition to non-paged flat-model protected mode from a
162 # This is a bare bones transition to protected mode only
200 # Transition to 16 bit protected mode
220 # Transition to Flat 32 bit protected mode
221 # The jump to a far pointer causes the transition to 32 bit mode
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/Ia32/
Thunk16.S 156 # @param Transition The pointer to the transition code
179 movl 40(%esp), %eax # eax <- address of transition code
Thunk16.asm 216 ; IN OUT VOID *Transition
230 mov eax, [esp + 40] ; eax <- address of transition code
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
Thunk16.asm 231 ; IN OUT VOID *Transition
255 mov eax, edx ; eax <- transition code address

Completed in 1541 milliseconds

1 23 4