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

1 2

  /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/
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/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/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/tool/src/main/java/org/antlr/analysis/
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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_emit.cpp 43 bool eot = inst->eot; local
111 eot,
brw_fs.h 170 bool eot; member in class:fs_inst
brw_vec4.h 185 bool eot; member in class:brw::vec4_instruction
brw_vs_emit.c 1520 int eot; local
    [all...]
brw_wm.h 148 GLuint eot:1; /* End of thread indicator for FB_WRITE*/ member in struct:brw_wm_instruction
380 GLuint eot);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_emit.cpp 43 bool eot = inst->eot; local
111 eot,
brw_fs.h 170 bool eot; member in class:fs_inst
brw_vec4.h 185 bool eot; member in class:brw::vec4_instruction
brw_vs_emit.c 1520 int eot; local
    [all...]
brw_wm.h 148 GLuint eot:1; /* End of thread indicator for FB_WRITE*/ member in struct:brw_wm_instruction
380 GLuint eot);
  /external/harfbuzz_ng/util/
options.hh 147 bot = eot = preserve_default_ignorables = false;
171 (eot ? HB_BUFFER_FLAG_EOT : 0) |
229 hb_bool_t eot; member in struct:shape_options_t
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
earley-boyer.js 1096 "\004": "#\\eot",
1136 "eot": "\004",
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-earley-boyer.js 1090 "\004": "#\\eot",
1130 "eot": "\004",
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-earley-boyer.js 1090 "\004": "#\\eot",
1130 "eot": "\004",
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-earley-boyer.js 1090 "\004": "#\\eot",
1130 "eot": "\004",
    [all...]

Completed in 429 milliseconds

1 2