Searched refs:EndOfFile (Results 1 - 25 of 75) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DCharStreamConstants.cs36 public const int EndOfFile = -1; field in class:Antlr.Runtime.CharStreamConstants
H A DTokenConstants.cs55 public const int EndOfFile = (int)CharStreamConstants.EndOfFile; field in class:Antlr.Runtime.TokenTypes
67 public static readonly IToken EndOfFile = Tokens<CommonToken>.EndOfFile; field in class:Antlr.Runtime.Tokens
82 public static readonly T EndOfFile = new T() field in class:Antlr.Runtime.T
84 Type = TokenTypes.EndOfFile
H A DParser.cs72 if (expectedTokenType == TokenTypes.EndOfFile)
78 if (current.Type == TokenTypes.EndOfFile) {
H A DUnbufferedTokenStream.cs85 return o.Type == CharStreamConstants.EndOfFile;
H A DBufferedTokenStream.cs200 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) {
H A DANTLRStringStream.cs176 return CharStreamConstants.EndOfFile; // invalid; no char before first char
182 return CharStreamConstants.EndOfFile;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DCharStreamConstants.cs38 public const int EndOfFile = -1; field in class:Antlr.Runtime.CharStreamConstants
H A DTokenTypes.cs37 public const int EndOfFile = CharStreamConstants.EndOfFile; field in class:Antlr.Runtime.TokenTypes
H A DParser.cs79 if ( expectedTokenType == TokenTypes.EndOfFile )
85 if ( current.Type == TokenTypes.EndOfFile )
H A DBufferedTokenStream.cs231 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)
H A DANTLRStringStream.cs199 return CharStreamConstants.EndOfFile; // invalid; no char before first char
206 return CharStreamConstants.EndOfFile;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreePatternLexer.cs74 while ( c != CharStreamConstants.EndOfFile )
144 return CharStreamConstants.EndOfFile;
146 return CharStreamConstants.EndOfFile;
154 c = CharStreamConstants.EndOfFile;
H A DCommonErrorNode.cs51 stop.Type != TokenTypes.EndOfFile ) )
82 if ( ( (IToken)stop ).Type == TokenTypes.EndOfFile )
H A DCommonTreeNodeStream.cs186 return TreeAdaptor.GetType(o) == CharStreamConstants.EndOfFile;
243 while ( type != TokenTypes.EndOfFile )
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dnuances.rb32 lexer grammar EndOfFile;
43 lexer = EndOfFile::Lexer.new( " " )
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
H A Drtp_file_source.h45 virtual bool EndOfFile() const;
H A Drtp_file_source.cc50 while (!EndOfFile()) {
104 bool RtpFileSource::EndOfFile() const { function in class:webrtc::test::RtpFileSource
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DCommonErrorNode.cs48 stop.Type != TokenTypes.EndOfFile)) {
73 if (((IToken)stop).Type == TokenTypes.EndOfFile) {
H A DCommonTreeNodeStream.cs161 return TreeAdaptor.GetType(o) == CharStreamConstants.EndOfFile;
210 while (type != TokenTypes.EndOfFile) {
H A DParseTree.cs92 if (t.Type == TokenTypes.EndOfFile) {
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A DPacketLossTest.cc42 if (!_rtpStream->EndOfFile()) {
47 if (_rtpStream->EndOfFile()) {
62 if (_realPayloadSizeBytes == 0 && _rtpStream->EndOfFile()) {
H A DRTPFile.h34 // end-of-stream (in the case that EndOfFile() is true) or an error.
37 virtual bool EndOfFile() const = 0;
75 virtual bool EndOfFile() const OVERRIDE;
107 virtual bool EndOfFile() const OVERRIDE {
H A DPCMFile.h45 bool EndOfFile() const { function in class:webrtc::PCMFile
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimStringStream.cs222 return CharStreamConstants.EndOfFile; // invalid; no char before first char
229 return CharStreamConstants.EndOfFile;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DLookaheadStream.cs64 public T EndOfFile { property in class:Antlr.Runtime.Misc.LookaheadStream

Completed in 4888 milliseconds

123