HomeSort by relevance Sort by last modified time
    Searched full:recovery (Results 201 - 225 of 1276) sorted by null

1 2 3 4 5 6 7 891011>>

  /cts/tools/dasm/src/java_cup/runtime/
lr_parser.java 34 * In addition to these main parsers, the error recovery mechanism uses two
36 * without carrying out actions (to verify that a potential error recovery
83 * must be parsed without error in order to consider a recovery to
97 * before recovery is attempted). In the default implementation it
100 * <dd> This method is called if syntax error recovery fails. In the default
227 /* Global parse state shared by parse(), error recovery, and
351 /** This method is called when a syntax error has been detected and recovery
364 /** This method is called if it is determined that syntax error recovery
737 /* Error recovery code */
740 /** Attempt to recover from a syntax error. This returns false if recovery
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3baserecognizer.c 229 // Free up any token factory we created (error recovery for instance)
408 /// recovery, override mismatchRecover() and have it call
458 recognizer->state->errorRecovery = ANTLR3_FALSE; // Not in error recovery now (if we were)
602 /// then we know we're missing a token; error recovery is free to
708 /// not parsing. Once in recovery mode, no errors are generated.
709 /// To get out of recovery mode, the parser must successfully match
713 /// 2. enter recovery mode, report error
732 // Already in error recovery so don't display another error while doing so
737 // Signal we are in error recovery now
785 /// Compute the error recovery set for the current rule
    [all...]
  /external/chromium_org/tools/idl_parser/
idl_parser.py 207 # [2.1] Error recovery for definition
238 # [6.1] Error recovery for Partial
273 # [11.1] Error recovery for regular Dictionary
297 # [14.1] Error recovery for Partial Dictionary
332 # [18.1] Error recovery for ExceptionMembers
349 # [20.1] Error recovery for Enums
386 # [25.1] Error recovery for Typedefs
554 # [56.1] ArgumentList error recovery
608 # [63.1] Error recovery for ExceptionMembers
877 # is triggered logging an error, and parsing recovery happens as th
    [all...]
  /bootable/recovery/applypatch/
freecache.c 54 // of which should be true, especially in recovery).
85 const char* dirs[2] = {"/cache", "/cache/recovery/otatest"};
imgdiff_test.sh 6 # recovery images. It then applies the patches on the device (or
108 patch_and_apply system/recovery.img
  /external/chromium_org/chrome/browser/chromeos/policy/
device_cloud_policy_store_chromeos.cc 143 // to indicate that recovery is required.
161 // once the need for recovery is detected upon policy load, a flag is
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
navigation_history.js 116 * returns true if it is a valid recovery candidate. Nodes that do not
125 // recovery target. Add it to the history before computing the reversion.
  /external/chromium_org/net/test/
openssl_helper.cc 71 } else if (strcmp(argv[i], "snap-start-recovery") == 0) {
72 // Support Snap Start, but always trigger a recovery
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/
p2.cpp 17 // Error recovery: out-of-line constructors whose names have template arguments.
21 // Error recovery: out-of-line constructor names intended to be types
  /external/libnfc-nxp/src/
phFriNfc_MifULFormat.h 165 * This function also handles the different recovery procedures for different types of the cards. For both
166 * Format and Recovery Management same API is used.
  /external/zlib/src/examples/
gzlog.h 26 2.0 25 Apr 2008 Complete redesign for recovery of interrupted operations
63 lock file, and "foo.repairs" to log recovery operations performed due to
  /packages/apps/Browser/src/com/android/browser/
PreferenceKeys.java 110 // Keys for browser recovery
113 * The last time recovery was started as System.currentTimeMillis.
  /system/core/init/
builtins.c 478 mkdir("/cache/recovery", 0700);
479 int fd = open("/cache/recovery/command", O_RDWR|O_CREAT|O_TRUNC, 0600);
485 ERROR("could not open /cache/recovery/command\n");
488 android_reboot(ANDROID_RB_RESTART2, 0, "recovery");
557 /* Setup a wipe via recovery, and reboot into recovery */
558 ERROR("fs_mgr_mount_all suggested recovery, so wiping data via recovery.\n");
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseRecognizer.m 275 // then we know we're missing a token; error recovery is free to
294 * not parsing. Once in recovery mode, no errors are generated.
295 * To get out of recovery mode, the parser must successfully match
299 * 2. enter recovery mode, report error
493 // where LT(1) is in the recovery token set so nothing is
515 /* Compute the error recovery set for the current rule. During
566 * For error recovery, we cannot consider FOLLOW(c)
579 * the same recovery set and doesn't consume anything. Rule b
584 * for the token that was a member of the recovery set.
588 * ANTLR's error recovery mechanism is based upon original ideas
    [all...]
  /external/chromium_org/third_party/angle/extensions/
EXT_robustness.txt 50 recovery from such hardware faults, the recovery mechanism can
51 also allow recovery from video memory access exceptions and system
134 2.6 "Graphics Reset Recovery"
137 causes all context state to be lost. Recovery from such events
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 64 a stack that tracks follow sets for error recovery
66 a flag indicating whether or not the recognizer is in error recovery mode
368 # As a result, all error tracking and error recovery
496 ###################################### Error Recovery ########################################
533 # Compute the error recovery set for the current rule. During
584 # For error recovery, we cannot consider FOLLOW(c)
597 # the same recovery set and doesn't consume anything. Rule b
602 # for the token that was a member of the recovery set.
606 # ANTLR's error recovery mechanism is based upon original ideas:
612 # "A note on error recovery in recursive descent parsers"
    [all...]
  /bootable/recovery/
roots.cpp 49 fstab = fs_mgr_read_fstab("/etc/recovery.fstab");
51 LOGE("failed to read /etc/recovery.fstab\n");
63 printf("recovery filesystem table\n");
  /device/moto/shamu/
releasetools.py 235 and add the corresponding flash instructions to the recovery
237 entry in recovery.fstab."""
252 print "skipping flash of %s; not in recovery.fstab" % (image.name,)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 339 /** TODO: not thought about recovery in lexer yet.
423 * to do sophisticated error recovery if you are in a fragment rule.
428 //System.out.println("consuming char "+(char)input.LA(1)+" during recovery");
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Lexer.js 3 * uses simplified match() and error recovery mechanisms in the interest
206 /** TODO: not thought about recovery in lexer yet.
269 * to do sophisticated error recovery if you are in a fragment rule.
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
forward_error_correction.h 71 // recovery, but will reduce delay by allowing #DecodeFEC() to pre-emptively
281 // Initializes the packet recovery using the FEC packet.
289 // Finish up the recovery of a packet.
  /external/chromium_org/tools/metrics/histograms/
histograms.xml     [all...]
  /bionic/libc/bionic/
system_properties_compat.c 32 * binary is compiled statically against the newest bionic, but the recovery
  /bootable/recovery/minadbd/
services.c 132 // this exit status causes recovery to print a special error
  /development/ndk/platforms/android-3/include/linux/raid/
md_k.h 132 unsigned long recovery; member in struct:mddev_s

Completed in 1545 milliseconds

1 2 3 4 5 6 7 891011>>