Searched refs:Recover (Results 1 - 25 of 27) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DLexer.cs134 Recover(nva); // throw out current char and try again
217 Recover(mte);
237 Recover(mte); // don't really recover; just consume in lexer
251 Recover(mre);
337 public virtual void Recover(RecognitionException re) { method in class:Antlr.Runtime.Lexer
H A DBaseRecognizer.cs371 * Recover from an error found on the input stream. This is
378 public virtual void Recover(IIntStream input, RecognitionException re) { method in class:Antlr.Runtime.BaseRecognizer
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DLexer.cs171 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 ) method in class:Antlr.Runtime.Lexer
H A DBaseRecognizer.cs437 * Recover from an error found on the input stream. This is
444 public virtual void Recover( IIntStream input, RecognitionException re ) method in class:Antlr.Runtime.BaseRecognizer
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimLexer.cs165 Recover( nva ); // throw out current char and try again
279 Recover( mte );
303 Recover( mte ); // don't really recover; just consume in lexer
321 Recover( mre );
426 public virtual void Recover( RecognitionException re ) method in class:Antlr.Runtime.SlimLexer
/external/llvm/include/llvm/Transforms/
H A DInstrumentation.h105 bool Recover = false,
108 bool Recover = false);
/external/webrtc/webrtc/sound/
H A Dalsasoundsystem.cc105 Recover(frames);
115 Recover(ready);
128 Recover(frames);
147 Recover(err);
159 bool Recover(int error) { function in class:rtc::AlsaStream
305 stream_.Recover(read);
382 stream_.Recover(written);
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp449 explicit AddressSanitizer(bool CompileKernel = false, bool Recover = false,
452 Recover(Recover || ClRecover),
530 bool Recover; member in struct:__anon13309::AddressSanitizer
556 bool Recover = false)
558 Recover(Recover || ClRecover) {}
577 bool Recover; member in class:__anon13309::AddressSanitizerModule
814 bool Recover,
816 assert(!CompileKernel || Recover);
813 createAddressSanitizerFunctionPass(bool CompileKernel, bool Recover, bool UseAfterScope) argument
826 createAddressSanitizerModulePass(bool CompileKernel, bool Recover) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugTreeGrammar.cs182 Recover(input,re);
401 Recover(input,re);
704 Recover(input,re);
788 Recover(input,re);
H A DProfileTreeGrammar.cs187 Recover(input,re);
406 Recover(input,re);
709 Recover(input,re);
793 Recover(input,re);
H A DDebugGrammarParser.cs231 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);
H A DProfileGrammarParser.cs235 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);
/external/clang/lib/CodeGen/
H A DBackendUtil.cpp218 bool Recover = CGOpts.SanitizeRecover.has(SanitizerKind::Address); local
220 PM.add(createAddressSanitizerFunctionPass(/*CompileKernel*/ false, Recover,
222 PM.add(createAddressSanitizerModulePass(/*CompileKernel*/false, Recover));
229 /*Recover*/ true, /*UseAfterScope*/ false));
231 /*Recover*/true));
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DCSharp2.stg247 Recover(re);
548 Recover(input,re);
958 Recover(mse);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DCSharp3.stg242 Recover(re);
526 Recover(input,re);
938 Recover(mse);
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
H A DDelphi.stg279 Recover(RE);
692 Recover(Input,RE);
1092 Recover(FException);
/external/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp1862 bool Recover = Complain && !S.isSFINAEContext(); local
1865 Sema::MissingImportKind::Definition, Recover);
1866 return !Recover;
H A DSemaLookup.cpp4953 MissingImportKind MIK, bool Recover) {
4971 Recover);
4987 MissingImportKind MIK, bool Recover) {
5041 if (Recover)
H A DSemaTemplate.cpp400 // Recover by taking the template that we found in the object
690 T = Context.IntTy; // Recover with an 'int' type.
1012 // Recover by ignoring the old declaration.
2595 // FIXME: Recover from this by treating the declaration as a redeclaration
3172 // Recover by synthesizing a type using the location information that we
3769 /*Recover*/true);
8652 const bool Recover = true; local
8658 S.diagnoseMissingImport(Loc, D, Kind, Recover);
8660 S.diagnoseMissingImport(Loc, D, D->getLocation(), Modules, Kind, Recover);
8754 /*Recover*/tru
[all...]
/external/bison/doc/
H A Drefcard.tex493 \key{Recover normally from an error.} {yyerrok}
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas805 /// Recover from an error found on the input stream. This is
811 procedure Recover(const Input: IIntStream; const RE: ERecognitionException); procedure
1105 procedure Recover(const RE: ERecognitionException);
2027 /// Attempt to Recover from a single missing or extra token.
2053 /// mismatched token error. To Recover, it sees that LA(1)==';'
2208 * set). The rule exception handler tries to Recover, but finds
2269 procedure Recover(const Input: IIntStream; const RE: ERecognitionException); virtual; procedure
2467 procedure Recover(const RE: ERecognitionException); reintroduce; overload; virtual;
4604 procedure TBaseRecognizer.Recover(const Input: IIntStream;
5470 Recover(MT
[all...]
/external/robolectric/v1/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/ImageMagick/www/api/
H A Dfx.php559 <p>SteganoImage() hides a digital watermark within the image. Recover the hidden watermark later to prove that the authenticity of an image. Offset defines the start position within the image to hide the watermark.</p>
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as323 /** Recover from an error found on the input stream. This is
/external/clang/include/clang/Sema/
H A DSema.h1894 MissingImportKind MIK, bool Recover = true);
1897 MissingImportKind MIK, bool Recover);

Completed in 936 milliseconds

12