Searched refs:recovery (Results 1 - 25 of 29) sorted by relevance

12

/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
H A Dtoplevel.ml29 (* Skip token for error recovery. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dtoplevel.ml34 (* Skip token for error recovery. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dtoplevel.ml44 (* Skip token for error recovery. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoplevel.ml44 (* Skip token for error recovery. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoplevel.ml44 (* Skip token for error recovery. *)
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoplevel.ml44 (* Skip token for error recovery. *)
/external/webkit/Source/JavaScriptCore/dfg/
H A DDFGJITCompiler.cpp106 void JITCompiler::jumpFromSpeculativeToNonSpeculative(const SpeculationCheck& check, const EntryLocation& entry, SpeculationRecovery* recovery) argument
113 // Does this speculation check require any additional recovery to be performed,
116 if (recovery) {
117 // The only additional recovery we currently support is for integer add operation
118 ASSERT(recovery->type() == SpeculativeAdd);
120 sub32(gprToRegisterID(recovery->src()), gprToRegisterID(recovery->dest()));
H A DDFGSpeculativeJIT.h37 // This enum describes the types of additional recovery that
61 // Indicates the type of additional recovery to be performed.
63 // different recovery types may required different additional information here.
79 // Used to record any additional recovery to be performed; this
81 // array, offset by 1. (m_recoveryIndex == 0) means no recovery.
116 // and additional recovery information.
124 // 0 means no recovery.
154 // Add a speculation check without additional recovery.
159 // Add a speculation check with additional recovery.
160 void speculationCheck(MacroAssembler::Jump jumpToFail, const SpeculationRecovery& recovery) argument
[all...]
/external/libxml2/include/libxml/
H A Dparser.h261 int recovery; /* run in recovery mode */ member in struct:_xmlParserCtxt
890 int recovery);
895 int recovery);
900 int recovery,
905 int recovery);
909 int recovery,
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as5 * support code essentially; most of it is error recovery stuff and
37 // wack everything related to error recovery
54 * single token insertion or deletion error recovery. If
58 * recovery, override mismatchRecover() and have it call
107 // then we know we're missing a token; error recovery is free to
142 * not parsing. Once in recovery mode, no errors are generated.
143 * To get out of recovery mode, the parser must successfully match
147 * 2. enter recovery mode, report error
332 // where LT(1) is in the recovery token set so nothing is
344 /** A hook to listen in on the token consumption during error recovery
[all...]
H A DRecognizerSharedState.as26 * but no token is consumed during recovery...another error is found,
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DCommonErrorNode.as24 // is consumed during recovery; LT(-1) will return null.
/external/e2fsprogs/e2fsck/
H A DAndroid.mk82 recovery.c \
H A DMakefile.in66 dx_dirinfo.o ehandler.o problem.o message.o recovery.o region.o \
75 profiled/recovery.o profiled/region.o profiled/revoke.o \
91 $(srcdir)/recovery.c \
345 recovery.o: $(srcdir)/recovery.c $(srcdir)/jfs_user.h $(srcdir)/e2fsck.h \
/external/kernel-headers/original/linux/raid/
H A Dmd_k.h170 /* recovery/resync flags
173 * SYNC: actually doing a resync, not a recovery
174 * ERR: and IO error was detected - abort the resync/recovery
181 * If neither SYNC or RESHAPE are set, then it is a recovery.
194 unsigned long recovery; member in struct:mddev_s
250 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
269 * if appropriate, and should abort recovery if needed
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBitSet.pm267 handle runtime requirements such as FOLLOW sets for automatic error recovery.
H A DBaseRecognizer.pm268 # where LT(1) is in the recovery token set so nothing is
616 support code essentially; most of it is error recovery stuff and
/external/libxml2/
H A Dparser.c271 if (ctxt->recovery == 0)
478 if (ctxt->recovery == 0)
504 if (ctxt->recovery == 0)
611 if (ctxt->recovery == 0)
643 if (ctxt->recovery == 0)
672 if (ctxt->recovery == 0)
6541 if (ctxt->recovery == 0) ctxt->disableSAX = 1;
13577 * @recovery: work in recovery mode, i.e. tries to read no Well Formed
13594 int recovery, voi
13593 xmlSAXParseFileWithData(xmlSAXHandlerPtr sax, const char *filename, int recovery, void *data) argument
13658 xmlSAXParseFile(xmlSAXHandlerPtr sax, const char *filename, int recovery) argument
13872 xmlSAXParseMemoryWithData(xmlSAXHandlerPtr sax, const char *buffer, int size, int recovery, void *data) argument
13923 xmlSAXParseMemory(xmlSAXHandlerPtr sax, const char *buffer, int size, int recovery) argument
14043 xmlSAXParseDoc(xmlSAXHandlerPtr sax, const xmlChar *cur, int recovery) argument
[all...]
H A DparserInternals.c152 if (ctxt->recovery == 0)
179 if (ctxt->recovery == 0)
207 if (ctxt->recovery == 0)
H A DSAX2.c135 if (ctxt->recovery == 0)
1277 if (ctxt->recovery == 0) ctxt->disableSAX = 1;
H A Dxmllint.c131 static int recovery = 0; variable
3134 recovery++;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb50 to implement backtracking and various error recovery techniques, recognizers
129 to perform tasks such as backtracking and error recovery.
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas432 /// for automatic error recovery.
545 /// but no token is consumed during recovery...another error is found,
687 /// support code essentially; most of it is error recovery stuff and
710 /// single token insertion or deletion error recovery. If
715 /// recovery, override MismatchRecover() and have it call
730 /// <summary>A hook to listen in on the token consumption during error recovery.
741 /// not parsing. Once in recovery mode, no errors are generated.
742 /// To get out of recovery mode, the parser must successfully Match
746 /// 2. enter recovery mode, report error
831 /// error recovery
[all...]
/external/bison/data/
H A Dyacc.c1022 of both cases is syntax error recovery. That is, a syntax error
1024 currently established initial context, so error recovery manipulates
1281 during error recovery, leaving behind the current lookahead.]], [[
1975 YY_LAC_DISCARD ("error recovery");]])[
/external/oprofile/events/i386/nehalem/
H A Devents70 event:0xA2 counters:0,1,2,3 um:resource_stalls minimum:6000 name:RESOURCE_STALLS : Counts the number of Allocator resource related stalls. Includes register renaming buffer entries, memory buffer entries. In addition to resource related stalls, this event counts some other events. Includes stalls arising during branch misprediction recovery, such as if retirement of the mispredicted branch is delayed and stalls arising while store buffer is draining from synchronizing operations.

Completed in 1068 milliseconds

12