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

1 2

  /external/antlr/antlr-3.4/runtime/Python/antlr3/
dfa.py 49 eot, eof, min, max, accept, special, transition
55 self.eot = eot
105 # must check EOT, which is like the else clause.
106 # eot[s]>=0 indicates that an EOT edge goes to another
108 if self.eot[s] >= 0: # EOT Transition to accept state?
109 #print "EOT trans to accept state %d" % self.eot[s
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
DFA.java 42 protected short[] eot; field in class:DFA
102 // must check EOT, which is like the else clause.
103 // eot[s]>=0 indicates that an EOT edge goes to another
105 if ( eot[s]>=0 ) { // EOT Transition to accept state?
106 if ( debug ) System.err.println("EOT transition");
107 s = eot[s];
109 // TODO: I had this as return accept[eot[s]]
110 // which assumed here that the EOT edge alway
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3cyclicdfa.c 144 * must check EOT, which is like the else clause.
145 * eot[s]>=0 indicates that an EOT edge goes to another
148 if (cdfa->eot[s] >= 0)
150 s = cdfa->eot[s];
165 /* EOT Transition?
167 if (cdfa->eot[s] >= 0)
169 s = cdfa->eot[s];
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
DFA.js 55 // must check EOT, which is like the else clause.
56 // eot[s]>=0 indicates that an EOT edge goes to another
58 if ( this.eot[s]>=0 ) { // EOT Transition to accept state?
59 s = this.eot[s];
61 // TODO: I had this as return accept[eot[s]]
62 // which assumed here that the EOT edge always
64 // what about predicated edges coming from EOT
75 if ( this.eot[s]>=0 ) { // EOT Transition
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
DFA.pm 8 has 'eot' => (
95 # must check EOT, which is like the else clause.
96 # eot[s]>=0 indicates that an EOT edge goes to another
98 if ($self->eot->[$s] >= 0) { # EOT Transition to accept state?
99 $s = $self->eot->[$s];
101 # TODO: I had this as return accept[eot[s]]
102 # which assumed here that the EOT edge always
104 # what about predicated edges coming from EOT
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testdfa.py 32 eot=[],
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDFA.h 34 const int *eot; variable
71 @property const int *eot; variable
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3cyclicdfa.h 77 const ANTLR3_INT32 * const eot; member in struct:ANTLR3_CYCLIC_DFA_struct
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-dfa.rb 9 EOT = [1, 2].freeze
24 dfa.eot.should == DFASubclass::EOT
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
DFA.as 15 protected var eot:Array; // short[]
33 eot:Array, eof:Array, min:Array, max:Array, accept:Array, special:Array, transition:Array,
39 this.eot = eot;
100 // must check EOT, which is like the else clause.
101 // eot[s]>=0 indicates that an EOT edge goes to another
103 if ( eot[s]>=0 ) { // EOT Transition to accept state?
104 if ( debug ) trace("EOT transition")
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DFA.cs 61 protected short[] eot; field in class:Antlr.Runtime.DFA
123 // must check EOT, which is like the else clause.
124 // eot[s]>=0 indicates that an EOT edge goes to another
126 if (eot[s] >= 0) { // EOT Transition to accept state?
128 Console.Error.WriteLine("EOT transition");
129 s = eot[s];
131 // TODO: I had this as return accept[eot[s]]
132 // which assumed here that the EOT edge alway
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
DFA.cs 56 protected short[] eot; field in class:Antlr.Runtime.DFA
147 // must check EOT, which is like the else clause.
148 // eot[s]>=0 indicates that an EOT edge goes to another
150 if ( eot[s] >= 0 )
151 { // EOT Transition to accept state?
153 Console.Error.WriteLine( "EOT transition" );
154 s = eot[s];
156 // TODO: I had this as return accept[eot[s]]
157 // which assumed here that the EOT edge alway
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dfa.rb 64 as a member of seven seperate array constants -- +MIN+, +MAX+, +EOT+, +EOF+,
77 EOT[s]::
104 attr_reader :recognizer, :decision_number, :eot, :eof, :min, :max,
108 attr_reader :decision, :eot, :eof, :min, :max,
145 eot = nil, eof = nil, min = nil, max = nil,
150 @eot = eot || self.class::EOT #.eot
199 if @eot[ state ] >=
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAState.java 100 /** Is this state the sole target of an EOT transition? */
246 public void setEOTTargetState(boolean eot) {
247 EOTTargetState = eot;
DFA.java 209 public Vector eot; field in class:DFA
324 public List getJavaCompressedEOT() { return getRunLengthEncoding(eot); }
405 eot = new Vector(this.getNumberOfStates()); // Vector<int>
406 eot.setSize(this.getNumberOfStates());
462 System.out.println("eot="+eot);
530 // must be predicates or pure EOT transition; just zero out min, max
589 /** Set up the EOT and EOF tables; we cannot put -1 min/max values so
597 if ( label.getAtom()==Label.EOT ) {
598 // eot[s] points to accept stat
    [all...]
NFAToDFAConverter.java 136 * when nongreedy and EOT transition. Make state with EOT emanating
212 // normally EOT is the "default" clause and decisions just
215 // various alts or until it finds EOT. So this rule
228 // Anyway, EOT is the default case which means it will never be matched
232 // When a loop is nongreedy and we find an EOT transition, the DFA
236 Label EOTLabel = new Label(Label.EOT);
244 // string so if we see an EOT edge emanating from this state, then
259 //System.out.println("state "+d+" has EOT target "+t.stateNumber);
282 // EOT also seems to be in here occasionally probably du
916 Label eot = new Label(Label.EOT); local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRDFA.h 34 const int *eot; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDFA.h 34 const int *eot; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRDFA.h 34 const int *eot; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 716 this.eot = DFA4_eot;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 716 this.eot = DFA4_eot;
SimpleCLexer.m 110 eot = dfa4_eot;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
SymbolTableLexer.m 97 eot = dfa4_eot;
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
CPP.stg 912 * loop. If end-of-token (EOT) predicts any of the targets then it
1009 <dfa.eot; wrap="\n ", separator=",", null="-1">
1040 eot = <name>dfa<dfa.decisionNumber>_eot;
    [all...]
  /external/doclava/src/com/google/doclava/parser/
JavaParser.java     [all...]

Completed in 1148 milliseconds

1 2