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

1 2 3 4

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/rexx/
scanio.c 5 if(s->eot){
6 unsigned len = s->eot - s->tok;
8 s->eot = &s->bot[len];
10 memcpy(s->eot, cursor, len);
11 cursor = s->eot;
26 if(s->eot)
27 s->eot = &buf[s->eot - s->bot];
rexx.l 20 ScanCB.eot = NULL;
273 ScanCB.eot = cursor;
  /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...]
  /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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_clip_util.c 211 bool eot,
218 assert(!(allocate && eot));
244 eot, /* eot */
268 1, /* eot */
382 0 /* eot */);
brw_clip.h 160 bool eot,
  /external/harfbuzz_ng/util/
options.hh 179 bot = eot = preserve_default_ignorables = false;
204 (eot ? HB_BUFFER_FLAG_EOT : 0) |
262 hb_bool_t eot; member in struct:shape_options_t
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_clip_util.c 211 bool eot,
218 assert(!(allocate && eot));
244 eot, /* eot */
268 1, /* eot */
382 0 /* eot */);
brw_clip.h 160 bool eot,

Completed in 623 milliseconds

1 2 3 4