Searched defs:EOF (Results 1 - 25 of 95) 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
H A DLangDumpDecl.h26 #ifdef EOF
27 #undef EOF macro
29 #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/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
H A Dpbackfail.pass.cpp14 // int_type pbackfail(int_type c = EOF);
28 virtual int_type pbackfail(int_type c = EOF) {return base::pbackfail(c);} argument
40 assert(sb.snextc() == EOF);
42 assert(sb.pbackfail('3') == EOF);
44 assert(sb.pbackfail(EOF) != EOF);
45 assert(sb.pbackfail(EOF) == EOF);
55 assert(sb.snextc() == EOF);
58 assert(sb.pbackfail(EOF) !
[all...]
/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/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/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 1576 milliseconds

1234