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

1 2 3 4 5 6 7

  /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/f2fs_utils/
mkf2fsuserimg.sh 6 cat<<EOT
12 EOT
  /system/extras/multinetwork/
quick_test.sh 20 readonly local hexValue=$(bc -q 2>/dev/null << EOT
23 EOT
  /system/extras/squashfs_utils/
mksquashfsimage.sh 6 cat<<EOT
9 EOT
  /system/extras/ext4_utils/
mkuserimg_mke2fs.sh 6 cat<<EOT
13 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/deqp/executor/
xeXMLWriter.cpp 50 case 4: return "&lt;EOT&gt;";
  /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);
  /external/autotest/site_utils/
setup_dev_autotest.sh 9 cat >&2 <<EOT
25 EOT
  /external/syslinux/com32/libupload/
upload_ymodem.c 14 EOT = 0x04,
103 static const uint8_t eot_buf = EOT;
151 printf("\nSending EOT...\n");
  /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...]
  /external/guava/guava/src/com/google/common/base/
Ascii.java 98 public static final byte EOT = 4;
  /external/python/cpython2/Lib/curses/
ascii.py 7 EOT = 0x04 # ^D
41 "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL",
  /external/python/cpython3/Lib/curses/
ascii.py 7 EOT = 0x04 # ^D
41 "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL",
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
ascii.py 7 EOT = 0x04 # ^D
41 "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL",
  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
ascii.py 7 EOT = 0x04 # ^D
41 "NUL", "SOH", "STX", "ETX", "EOT", "ENQ", "ACK", "BEL",
  /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",
  /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",
  /external/curl/lib/
mk-ca-bundle.pl 392 print CRT <<EOT;
412 EOT
  /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));
  /prebuilts/sdk/tools/
jack-admin 57 cat >"$JACK_CLIENT_SETTING.$$" <<-EOT
65 EOT

Completed in 490 milliseconds

1 2 3 4 5 6 7