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

1 2

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
Lexer.cs 134 Recover(nva); // throw out current char and try again
137 // match() routine has already called recover()
217 Recover(mte);
237 Recover(mte); // don't really recover; just consume in lexer
251 Recover(mre);
337 public virtual void Recover(RecognitionException re) {
BaseRecognizer.cs 127 * immediate exit from rule. Rule would recover by resynchronizing
371 * Recover from an error found on the input stream. This is
375 * token that the match() routine could not recover from.
378 public virtual void Recover(IIntStream input, RecognitionException re) {
467 * set). The rule exception handler tries to recover, but finds
587 /** <summary>Attempt to recover from a single missing or extra token.</summary>
612 * mismatched token error. To recover, it sees that LA(1)==';'
635 // can't recover with single token deletion, try insertion
679 * The recognizer attempts to recover from single missing
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
Lexer.cs 161 // MatchRange() routine has already called recover()
166 // Match() routine has already called recover()
171 Recover( re ); // throw out current char and try again
263 Recover( mte );
287 Recover( mte ); // don't really recover; just consume in lexer
304 Recover( mre );
409 public virtual void Recover( RecognitionException re )
BaseRecognizer.cs 137 * immediate exit from rule. Rule would recover by resynchronizing
437 * Recover from an error found on the input stream. This is
441 * token that the match() routine could not recover from.
444 public virtual void Recover( IIntStream input, RecognitionException re )
537 * set). The rule exception handler tries to recover, but finds
666 /** <summary>Attempt to recover from a single missing or extra token.</summary>
691 * mismatched token error. To recover, it sees that LA(1)==';'
716 // can't recover with single token deletion, try insertion
764 * The recognizer attempts to recover from single missin
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 165 Recover( nva ); // throw out current char and try again
170 // match() routine has already called recover()
279 Recover( mte );
303 Recover( mte ); // don't really recover; just consume in lexer
321 Recover( mre );
426 public virtual void Recover( RecognitionException re )
  /external/chromium_org/chrome/browser/diagnostics/
diagnostics_test.h 44 bool Recover(DiagnosticsModel::Observer* observer, DiagnosticsModel* model,
diagnostics_test.cc 34 bool DiagnosticsTest::Recover(DiagnosticsModel::Observer* observer,
diagnostics_model.cc 111 // Recover from a particular diagnostic test. Return false if no further
116 return test->Recover(observer, this, index);
  /external/chromium_org/media/audio/linux/
alsa_input.h 62 bool Recover(int error);
alsa_input.cc 130 bool AlsaPcmInputStream::Recover(int original_error) {
136 LOG(WARNING) << "Unable to recover from \""
160 Recover(error);
176 Recover(frames);
  /external/chromium_org/third_party/libjingle/source/talk/sound/
alsasoundsystem.cc 118 Recover(frames);
128 Recover(ready);
141 Recover(frames);
160 Recover(err);
169 // Used to recover from certain recoverable errors, principally buffer overrun
172 bool Recover(int error) {
183 LOG(LS_ERROR) << "Unable to recover from \"" << GetError(error) << "\": "
318 stream_.Recover(read);
397 stream_.Recover(written);
  /external/chromium_org/third_party/sqlite/src/src/
recover.c 12 /* Implements a virtual table "recover" which can be used to recover
24 * to recover the data from teh table, you could do something like:
34 * CREATE VIRTUAL TABLE temp.recover_Stuff using recover(
127 * type is the type provided to the recover module, schema is the
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
db_impl.h 72 // Recover the descriptor from persistent storage. May do a significant
73 // amount of work to recover recently logged updates. Any changes to
75 Status Recover(VersionEdit* edit) EXCLUSIVE_LOCKS_REQUIRED(mutex_);
version_set.h 166 // Recover the last saved descriptor from persistent storage.
167 Status Recover();
db_impl.cc 268 Status DBImpl::Recover(VersionEdit* edit) {
298 s = versions_->Recover();
302 // Recover from all newer log files than the ones named in the
335 // Recover in the order in which the logs were generated
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 182 Recover(input,re);
401 Recover(input,re);
704 Recover(input,re);
788 Recover(input,re);
ProfileTreeGrammar.cs 187 Recover(input,re);
406 Recover(input,re);
709 Recover(input,re);
793 Recover(input,re);
DebugGrammarParser.cs 231 Recover(input,re);
518 Recover(input,re);
670 Recover(input,re);
762 Recover(input,re);
975 Recover(input,re);
1133 Recover(input,re);
1410 Recover(input,re);
    [all...]
ProfileGrammarParser.cs 235 Recover(input,re);
522 Recover(input,re);
674 Recover(input,re);
766 Recover(input,re);
979 Recover(input,re);
1137 Recover(input,re);
1414 Recover(input,re);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
CSharp2.stg 247 Recover(re);
548 Recover(input,re);
958 Recover(mse);
962 <! use following code to make it recover inline; remove throw mse;
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
CSharp3.stg 242 Recover(re);
526 Recover(input,re);
938 Recover(mse);
942 <! use following code to make it recover inline; remove throw mse;
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
Delphi.stg 279 Recover(RE);
692 Recover(Input,RE);
    [all...]
  /external/bison/doc/
refcard.tex 493 \key{Recover normally from an error.} {yyerrok}
  /external/chromium_org/chrome/browser/resources/file_manager/js/metadata/
byte_reader.js 510 * Recover the current position with a call to seekPop.
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 480 /// and recover from errors
716 /// plain Mismatch(), which does not recover. Then any error
718 /// rule. Rule would recover by resynchronizing to the set of
    [all...]

Completed in 902 milliseconds

1 2