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

1 2

  /external/llvm/include/llvm/Transforms/
Instrumentation.h 104 bool Recover = false);
106 bool Recover = false);
  /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 )
  /prebuilts/go/darwin-x86/doc/progs/
defer.go 5 // This file contains the code snippets included in "Defer, Panic, and Recover."
defer2.go 5 // This file contains the code snippets included in "Defer, Panic, and Recover."
20 if r := recover(); r != nil {
  /prebuilts/go/linux-x86/doc/progs/
defer.go 5 // This file contains the code snippets included in "Defer, Panic, and Recover."
defer2.go 5 // This file contains the code snippets included in "Defer, Panic, and Recover."
20 if r := recover(); r != nil {
  /external/webrtc/webrtc/sound/
alsasoundsystem.cc 105 Recover(frames);
115 Recover(ready);
128 Recover(frames);
147 Recover(err);
156 // Used to recover from certain recoverable errors, principally buffer overrun
159 bool Recover(int error) {
170 LOG(LS_ERROR) << "Unable to recover from \"" << GetError(error) << "\": "
305 stream_.Recover(read);
382 stream_.Recover(written);
  /external/llvm/lib/Transforms/Instrumentation/
AddressSanitizer.cpp 126 "asan-recover",
407 explicit AddressSanitizer(bool CompileKernel = false, bool Recover = false)
409 Recover(Recover || ClRecover) {
485 bool Recover;
510 bool Recover = false)
512 Recover(Recover || ClRecover) {}
530 bool Recover;
763 bool Recover) {
    [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/clang/lib/CodeGen/
BackendUtil.cpp 201 bool Recover = CGOpts.SanitizeRecover.has(SanitizerKind::Address);
202 PM.add(createAddressSanitizerFunctionPass(/*CompileKernel*/false, Recover));
203 PM.add(createAddressSanitizerModulePass(/*CompileKernel*/false, Recover));
209 /*Recover*/true));
211 /*Recover*/true));
  /prebuilts/go/darwin-x86/test/
recover.go 7 // Test of basic recover functionality.
19 // - some lesser bugs in recover()
77 println("spurious recover", v)
82 println("missing recover", x.(int))
93 println("recover didn't recover")
99 return recover()
103 mustRecoverBody(doubleRecover(), recover(), recover(), x)
107 v := recover()
    [all...]
  /prebuilts/go/linux-x86/test/
recover.go 7 // Test of basic recover functionality.
19 // - some lesser bugs in recover()
77 println("spurious recover", v)
82 println("missing recover", x.(int))
93 println("recover didn't recover")
99 return recover()
103 mustRecoverBody(doubleRecover(), recover(), recover(), x)
107 v := recover()
    [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/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...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]

Completed in 542 milliseconds

1 2