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

1 2

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CharStreamConstants.cs 36 public const int EndOfFile = -1;
TokenConstants.cs 55 public const int EndOfFile = (int)CharStreamConstants.EndOfFile;
67 public static readonly IToken EndOfFile = Tokens<CommonToken>.EndOfFile;
82 public static readonly T EndOfFile = new T()
84 Type = TokenTypes.EndOfFile
Parser.cs 72 if (expectedTokenType == TokenTypes.EndOfFile)
78 if (current.Type == TokenTypes.EndOfFile) {
BufferedTokenStream.cs 200 if (t.Type == CharStreamConstants.EndOfFile)
232 if (token.Type == TokenTypes.EndOfFile)
342 if (t.Type == CharStreamConstants.EndOfFile)
361 if (_tokens[_p].Type == CharStreamConstants.EndOfFile)
366 while (_tokens[i].Type != CharStreamConstants.EndOfFile) {
UnbufferedTokenStream.cs 85 return o.Type == CharStreamConstants.EndOfFile;
ANTLRStringStream.cs 176 return CharStreamConstants.EndOfFile; // invalid; no char before first char
182 return CharStreamConstants.EndOfFile;
Lexer.cs 118 if (input.LA(1) == CharStreamConstants.EndOfFile) {
119 IToken eof = new CommonToken((ICharStream)input, CharStreamConstants.EndOfFile, TokenChannels.Default, input.Index, input.Index);
314 case TokenTypes.EndOfFile:
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CharStreamConstants.cs 38 public const int EndOfFile = -1;
TokenTypes.cs 37 public const int EndOfFile = CharStreamConstants.EndOfFile;
Parser.cs 79 if ( expectedTokenType == TokenTypes.EndOfFile )
85 if ( current.Type == TokenTypes.EndOfFile )
BufferedTokenStream.cs 231 if (t.Type == CharStreamConstants.EndOfFile)
265 if (token.Type == TokenTypes.EndOfFile)
391 if (t.Type == CharStreamConstants.EndOfFile)
413 if (_tokens[_p].Type == CharStreamConstants.EndOfFile)
418 while (_tokens[i].Type != CharStreamConstants.EndOfFile)
ANTLRStringStream.cs 199 return CharStreamConstants.EndOfFile; // invalid; no char before first char
206 return CharStreamConstants.EndOfFile;
UnbufferedTokenStream.cs 149 return o.Type == CharStreamConstants.EndOfFile;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TreePatternLexer.cs 74 while ( c != CharStreamConstants.EndOfFile )
144 return CharStreamConstants.EndOfFile;
146 return CharStreamConstants.EndOfFile;
154 c = CharStreamConstants.EndOfFile;
CommonErrorNode.cs 51 stop.Type != TokenTypes.EndOfFile ) )
82 if ( ( (IToken)stop ).Type == TokenTypes.EndOfFile )
CommonTreeNodeStream.cs 186 return TreeAdaptor.GetType(o) == CharStreamConstants.EndOfFile;
243 while ( type != TokenTypes.EndOfFile )
ParseTree.cs 110 if ( t.Type == TokenTypes.EndOfFile )
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
nuances.rb 32 lexer grammar EndOfFile;
43 lexer = EndOfFile::Lexer.new( " " )
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
CommonErrorNode.cs 48 stop.Type != TokenTypes.EndOfFile)) {
73 if (((IToken)stop).Type == TokenTypes.EndOfFile) {
CommonTreeNodeStream.cs 161 return TreeAdaptor.GetType(o) == CharStreamConstants.EndOfFile;
210 while (type != TokenTypes.EndOfFile) {
ParseTree.cs 92 if (t.Type == TokenTypes.EndOfFile) {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimStringStream.cs 222 return CharStreamConstants.EndOfFile; // invalid; no char before first char
229 return CharStreamConstants.EndOfFile;
  /external/webkit/Source/WebCore/html/parser/
HTMLSourceTracker.cpp 51 if (token.type() == HTMLToken::EndOfFile)
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
LookaheadStream.cs 64 public T EndOfFile {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
LookaheadStream.cs 67 public T EndOfFile

Completed in 127 milliseconds

1 2