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

1 2

  /system/extras/f2fs_utils/
mkf2fsuserimg.sh 6 cat<<EOT
9 EOT
  /external/qemu/distrib/ext4_utils/src/
mkuserimg.sh 6 cat<<EOT
9 EOT
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-dfa.rb 9 EOT = [1, 2].freeze
24 dfa.eot.should == DFASubclass::EOT
  /system/extras/ext4_utils/
mkuserimg.sh 6 cat<<EOT
10 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/guava/guava/src/com/google/common/base/
Ascii.java 93 public static final byte EOT = 4;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
Label.java 65 * |-EOT->o predict alt 2
67 * To generate code for EOT, treat it as the "default" path, which
69 * which the EOT emanates.
71 public static final int EOT = -2;
87 public static final int MIN_ATOM_VALUE = EOT;
DFAOptimizer.java 88 * something to do with the EOT token.
98 * It can yield states that have only a single edge on EOT to an accept
102 * s0 -'='-> s3 -EOT-> s5 (accept)
105 * for keyword versus ID as the state with EOT edge emanating from it will
228 // if only one edge coming out, it is EOT, and target is accept prune
233 edge.label.getAtom()==Label.EOT )
236 // remove the superfluous EOT edge
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...]
LL1Analyzer.java 185 else if ( grammar.type==Grammar.LEXER && look.member(Label.EOT) ) {
186 // if this has EOT, lookahead is all char (all char can follow rule)
187 //look = new LookaheadSet(Label.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...]
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
help2man 32 my $version_info = <<EOT;
40 EOT
42 my $help_info = <<EOT;
66 EOT
497 $include{$sect} .= <<EOT;
509 EOT
513 print <<EOT;
516 EOT
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/codegen/
ACyclicDFACodeGenerator.java 101 if ( edge.label.getAtom()==Label.EOT ) {
102 // don't generate a real edge for EOT; track alt EOT predicts
107 System.out.println("DFA s"+s.stateNumber+" EOT goes to s"+
157 // HANDLE EOT EDGE
159 // EOT unique predicts an alt
163 // EOT state has transitions so must split on predicates.
166 // Note: these predicates emanate from the EOT target state
169 // state number. Predicates emanating from EOT targets are
170 // hoisted up to the state that has the EOT edge
    [all...]
CodeGenerator.java 680 if ( edge.label.getAtom()==Label.EOT ) {
707 if ( edge.label.getAtom()!=Label.EOT ) {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
ascii.py 7 EOT = 0x04 # ^D
41 "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL",
textpad.py 104 elif ch == curses.ascii.EOT: # ^d
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
ascii.py 7 EOT = 0x04 # ^D
41 "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL",
textpad.py 104 elif ch == curses.ascii.EOT: # ^d
  /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/tool/
CompositeGrammar.java 124 typeToTokenList.set(Label.NUM_FAUX_LABELS+Label.EOT, "<EOT>");
133 tokenIDToTypeMap.put("<EOT>", Utils.integer(Label.EOT));
Interpreter.java 408 // special case: EOT matches any char
416 if ( t.label.getAtom()==Label.EOT ) {
NFAFactory.java 302 // the rule, make it hit EOF/EOT.
312 * in the case of a lexer grammar, an EOT token when the conversion
319 label = Label.EOT;
612 * RuleRefTransitions as I want DFA conversion to stop at the EOT
  /external/deqp/framework/qphelper/
qpXmlWriter.c 69 case 4: repl = "&lt;EOT&gt;"; break;
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file-lexer.rb 912 EOT = unpack( 1, -1, 1, 11, 14, -1, 1, 11, 1, 20, 1, 11, 2, -1, 1,
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Ruby/
Ruby.stg 795 * closure loop. If end-of-token (EOT) predicts any of the
889 EOT = unpack( <dfa.javaCompressedEOT; anchor, separator=", ", wrap="\n"> )
    [all...]

Completed in 349 milliseconds

1 2