HomeSort by relevance Sort by last modified time
    Searched defs:recover (Results 26 - 50 of 112) sorted by null

12 3 4 5

  /prebuilts/go/darwin-x86/test/
rename.go 45 recover +
91 recover = 28
90 recover = 28 const
rename1.go 49 recover = 28
48 recover = 28 const
  /prebuilts/go/linux-x86/test/
rename.go 45 recover +
91 recover = 28
90 recover = 28 const
rename1.go 49 recover = 28
48 recover = 28 const
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3baserecognizer.h 110 /// perform different recovery options or not recover at all and so on.
184 * be from a mismatched token that the (*match)() could not recover from.
186 void (*recover) (struct ANTLR3_BASE_RECOGNIZER_struct * recognizer); member in struct:ANTLR3_BASE_RECOGNIZER_struct
311 /// The recognizer attempts to recover from single missing
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Lexer.java 100 // matchRange() routine has already called recover()
104 // match() routine has already called recover()
108 recover(re); // throw out current char and try again
178 recover(mte);
199 recover(mte); // don't really recover; just consume in lexer
216 recover(mre);
329 public void recover(RecognitionException re) { method in class:Lexer
BaseRecognizer.java 97 * immediate exit from rule. Rule would recover by resynchronizing
347 /** Recover from an error found on the input stream. This is
351 * token that the match() routine could not recover from.
353 public void recover(IntStream input, RecognitionException re) { method in class:BaseRecognizer
440 * set). The rule exception handler tries to recover, but finds
559 /** Attempt to recover from a single missing or extra token.
584 * mismatched token error. To recover, it sees that LA(1)==';'
609 // can't recover with single token deletion, try insertion
650 * The recognizer attempts to recover from single missing
689 //System.out.println("consume during recover LA(1)="+getTokenNames()[input.LA(1)])
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BaseRecognizer.pm 261 sub recover { subroutine
262 Readonly my $usage => 'void recover(IntStream input, RecognitionException re)';
  /external/antlr/antlr-3.4/runtime/Python/tests/
t051treeRewriteAST.py 22 def recover(self, input, re): member in class:T.walkerClass.TWalker
    [all...]
t057autoAST.py 57 def recover(self, input, re): member in class:TestAutoAST.lexerClass.TLexer
t042ast.py 18 def recover(self, input, re): member in class:t042ast.parserClass.TParser
t058rewriteAST.py 57 def recover(self, input, re): member in class:TestRewriteAST.lexerClass.TLexer
    [all...]
  /external/autotest/scheduler/
agent_task.py 487 def recover(self): member in class:AgentTask
496 # no process to recover; wait to be started normally
  /external/javaparser/javaparser-core/src/main/javacc-support/com/github/javaparser/
GeneratedJavaParserBase.java 167 TokenRange recover(int recoveryTokenType, ParseException p) { method in class:GeneratedJavaParserBase
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
StreamAllocation.java 316 public boolean recover(RouteException e) { method in class:StreamAllocation
317 // Android-changed: Canceled StreamAllocations can never recover http://b/33763156
333 public boolean recover(IOException e, Sink requestBodyOut) { method in class:StreamAllocation
356 // If there was a protocol problem, don't recover.
361 // If there was an interruption or timeout, don't recover.
376 // If there was a protocol problem, don't recover.
381 // If there was an interruption don't recover, but if there was a timeout
  /prebuilts/go/darwin-x86/src/builtin/
builtin.go 226 // recover.
229 // The recover built-in function allows a program to manage behavior of a
230 // panicking goroutine. Executing a call to recover inside a deferred
233 // call of panic. If recover is called outside the deferred function it will
235 // panicking, or if the argument supplied to panic was nil, recover returns
236 // nil. Thus the return value from recover reports whether the goroutine is
238 func recover() interface{} func
  /prebuilts/go/darwin-x86/src/text/template/parse/
parse.go 192 // recover is the handler that turns panics into returns from the top level of Parse.
193 func (t *Tree) recover(errp *error) { func
194 e := recover()
229 defer t.recover(&err)
  /prebuilts/go/linux-x86/src/builtin/
builtin.go 226 // recover.
229 // The recover built-in function allows a program to manage behavior of a
230 // panicking goroutine. Executing a call to recover inside a deferred
233 // call of panic. If recover is called outside the deferred function it will
235 // panicking, or if the argument supplied to panic was nil, recover returns
236 // nil. Thus the return value from recover reports whether the goroutine is
238 func recover() interface{} func
  /prebuilts/go/linux-x86/src/text/template/parse/
parse.go 192 // recover is the handler that turns panics into returns from the top level of Parse.
193 func (t *Tree) recover(errp *error) { func
194 e := recover()
229 defer t.recover(&err)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ldo.c 461 static int recover (lua_State *L, int status) { function
548 if (recover(L, status)) /* recover point? */
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3baserecognizer.c 63 static void recover (pANTLR3_BASE_RECOGNIZER recognizer);
175 recognizer->recover = recover;
409 /// plain mismatch(), which does not recover. Then any error
411 /// rule. Rule would recover by resynchronizing to the set of
850 /// set). The rule exception handler tries to recover, but finds
1320 recover (pANTLR3_BASE_RECOGNIZER recognizer) function
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 51 and recover from errors etc... As a separate state object, it can be
207 immediate exit from rule. Rule would recover by resynchronizing
450 def recover(self, input, re): member in class:BaseRecognizer
452 Recover from an error found on the input stream. This is
456 token that the match() routine could not recover from.
559 set). The rule exception handler tries to recover, but finds
669 """Attempt to recover from a single missing or extra token.
694 mismatched token error. To recover, it sees that LA(1)==';'
719 # can't recover with single token deletion, try insertion
763 The recognizer attempts to recover from single missin
1332 def recover(self, re): member in class:Lexer
    [all...]
  /external/e2fsprogs/debugfs/
journal.c 522 int recover = ext2fs_has_feature_journal_needs_recovery(fs->super); local
528 } else if (recover) {
619 * fail we should attempt to recover from. */
677 int recover = ext2fs_has_feature_journal_needs_recovery(fs->super); local
682 !recover && sb->s_journal_inum == 0 && sb->s_journal_dev == 0 &&
  /external/syslinux/com32/lua/src/
ldo.c 461 static int recover (lua_State *L, int status) { function
548 if (recover(L, status)) /* recover point? */
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 383 # data provided by +follow+ to recover from the mismatched
499 def recover( error = $! ) method in class:ANTLR3.Scope
516 # resyncing procedure in recover
596 # set). The rule exception handler tries to recover, but finds
668 # The recognizer attempts to recover from single missing
1171 def recover( re ) method in class:ANTLR3.Hypothetical.Lexer.Hypothetical.Parser.Lexer
    [all...]

Completed in 2851 milliseconds

12 3 4 5