Searched defs:EOF (Results 1 - 25 of 80) sorted by relevance

1234

/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/combined/
H A DCombinedLexer.h20 #define EOF -1 macro
H A DCombinedParser.h17 #define EOF -1 macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
H A DTestLexer.h18 #define EOF -1 macro
H A DTestLexerLexer.h17 #ifdef EOF
18 #undef EOF macro
20 #define EOF -1 macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/output1/
H A DTestLexer.h18 #define EOF -1 macro
H A DTestLexerLexer.h18 #define EOF -1 macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
H A DTreeRewriteLexer.h17 #ifdef EOF
18 #undef EOF macro
20 #define EOF -1 macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
H A DTreeRewriteLexer.h19 #define EOF -1 macro
H A DTreeRewriteParser.h15 #define EOF -1 macro
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DCharStream.pm9 Readonly my $EOF => -1;
10 sub EOF { return $EOF } subroutine
H A DToken.pm37 sub EOF { ANTLR::Runtime::CharStream->EOF } subroutine
39 #Readonly my $EOF_TOKEN => ANTLR::Runtime::CommonToken->new({ type => EOF });
42 state $EOF_TOKEN = ANTLR::Runtime::CommonToken->new({ type => EOF });
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
H A DTLexer.h17 #ifdef EOF
18 #undef EOF macro
20 #define EOF -1 macro
H A DTParser.h26 #ifdef EOF
27 #undef EOF macro
29 #define EOF -1 macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
H A DLangLexer.h17 #ifdef EOF
18 #undef EOF macro
20 #define EOF -1 macro
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dconstants.py33 EOF = -1 variable
H A Ddfa.py33 from antlr3.constants import EOF namespace
94 #print "LA = %d (%r)" % (c, unichr(c) if c >= 0 else 'EOF')
135 # EOF Transition to accept state?
136 if c == EOF and self.eof[s] >= 0:
137 #print "EOF Transition to accept state %d" \
141 # not in range and not EOF/EOT, must be invalid symbol
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DCharStream.java32 public static final int EOF = -1; field in interface:CharStream
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
H A DSymbolTableLexer.h17 #ifdef EOF
18 #undef EOF macro
20 #define EOF -1 macro
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/
H A DSymbolTableLexer.h32 #define EOF -1 macro
H A DSymbolTableParser.h21 #define EOF -1 macro
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DChannelCondition.java29 * has been closed. This implies <code>EOF</code>. Note that there may still
46 * EOF on has been reached, no more _new_ stdout or stderr data will arrive
51 public static final int EOF = 16; field in interface:ChannelCondition
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DEOF.java8 public final class EOF extends Token class in inherits:Token
10 public EOF() method in class:EOF
15 public EOF(int line, int pos) method in class:EOF
25 return new EOF(getLine(), getPos());
/external/webkit/Source/WebKit/chromium/scripts/
H A Djsmin.py71 EOF = '' variable
98 self.theLookahead = EOF
99 if c == EOF:
101 if c >= ' ' or c == '\n' or c == EOF:
132 elif get == EOF:
162 if self.theA == EOF:
176 if self.theA == EOF:
188 self.theLookahead = EOF
190 while self.theA != EOF:
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreePatternLexer.cs37 public const int EOF = -1; field in class:Antlr.Runtime.Tree.TreePatternLexer
71 while (c != EOF) {
125 return EOF;
127 return EOF;
133 c = EOF;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
H A DSimpleCLexer.h17 #ifdef EOF
18 #undef EOF macro
20 #define EOF -1 macro

Completed in 2450 milliseconds

1234