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

1 2 3

  /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;
  /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;
  /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 )
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
nuances.rb 32 lexer grammar EndOfFile;
43 lexer = EndOfFile::Lexer.new( " " )
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
RTPFile.h 34 // 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 {
PacketLossTest.cc 42 if (!_rtpStream->EndOfFile()) {
47 if (_rtpStream->EndOfFile()) {
62 if (_realPayloadSizeBytes == 0 && _rtpStream->EndOfFile()) {
PCMFile.h 45 bool EndOfFile() const {
opus_test.cc 246 if (in_file_mono_.EndOfFile()) {
251 if (in_file_stereo_.EndOfFile()) {
362 if (in_file_mono_.EndOfFile()) {
365 if (in_file_stereo_.EndOfFile()) {
EncodeDecodeTest.cc 100 if (!_pcmFile.EndOfFile()) {
184 if (!_rtpStream->EndOfFile()) {
190 if (_rtpStream->EndOfFile()) {
203 if (_realPayloadSizeBytes == 0 && _rtpStream->EndOfFile()) {
243 if (_rtpStream->EndOfFile()) {
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/tools/
rtp_file_source.h 45 virtual bool EndOfFile() const;
rtp_file_source.cc 50 while (!EndOfFile()) {
104 bool RtpFileSource::EndOfFile() const {
  /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) {
  /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/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLSourceTracker.cpp 69 if (token.type() == HTMLToken::EndOfFile) {

Completed in 519 milliseconds

1 2 3