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

1 2 3

  /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/mesa3d/src/gallium/drivers/ilo/shader/
toy_helpers.h 133 bool eot,
145 desc = eot << 31 |
164 const bool eot = false;
184 return tsrc_imm_mdesc(tc, eot, message_length,
190 bool eot,
220 return tsrc_imm_mdesc(tc, eot, message_length,
234 const bool eot = false;
248 return tsrc_imm_mdesc(tc, eot, message_length,
254 bool eot,
291 return tsrc_imm_mdesc(tc, eot, message_length
    [all...]
ilo_shader_gs.c 226 bool eot)
264 eot, msg_len, !eot, true, true, !eot,
396 bool eot; local
398 eot = (gcc->static_data.num_vertices == gcc->static_data.total_vertices);
404 if (eot && gcc->write_so) {
424 gcc->shader->out.count, eot);
426 if (!eot) {
    [all...]
ilo_shader_vs.c 937 bool eot; local
940 eot = true;
957 eot = false;
980 eot = false;
990 desc = tsrc_imm_mdesc_urb(tc, eot, msg_len, 0,
991 eot, true, false, true, sent_attrs / 2, 0);
    [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/harfbuzz_ng/util/
options.hh 154 bot = eot = preserve_default_ignorables = false;
184 (eot ? HB_BUFFER_FLAG_EOT : 0) |
422 hb_bool_t eot;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_visitor.cpp 149 write->eot = true;
508 inst->eot = true;
619 * EOT at the end of the program for us.
628 inst->eot = true;
789 inst->eot = slot == last_slot && stage != MESA_SHADER_GEOMETRY;
807 /* We can't directly send from g0, since sends with EOT have to use
818 inst->eot = true;
    [all...]
brw_eu.h 276 bool eot);
292 bool eot,
brw_fs_cse.cpp 190 a->eot == b->eot &&

Completed in 1235 milliseconds

1 2 3