HomeSort by: relevance | last modified time | path
    Searched refs:Errors (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/games/hangman/
playgame.c 53 Errors = 0;
57 while (Errors < MAXERRS && strchr(Known, '-') != NULL) {
endgame.c 53 if (Errors >= MAXERRS)
54 Errors = MAXERRS + 2;
58 if (Errors > MAXERRS)
extern.c 59 int Errors, Wordnum = 0;
prman.c 53 for (i = 0; i < Errors; i++)
main.c 84 Average = (Average * (Wordnum - 1) + Errors) / Wordnum;
prdata.c 67 (Average * (Wordnum - 1) + Errors) / Wordnum);
getguess.c 87 Errors++;
hangman.h 71 extern int Errors, Wordnum;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-elfabi/
ErrorCollector.cpp 23 Errors.push_back(std::move(Err));
32 for (Error &E : Errors) {
35 Errors.clear();
41 OS << "Encountered multiple errors:\n";
42 for (size_t i = 0; i < Errors.size(); ++i) {
43 WithColor::error(OS) << "(" << Tags[i] << ") " << Errors[i];
44 if (i != Errors.size() - 1)
49 bool ErrorCollector::allErrorsHandled() const { return Errors.empty(); }
55 for (Error &E : Errors) {
ErrorCollector.h 9 /// This class collects errors that should be reported or ignored in aggregate.
13 /// errors as non-fatal. In this case, all Errors are consumed upon destruction.
15 /// errors are treated as fatal. This causes a crash if an attempt is made to
16 /// delete the ErrorCollector when some Errors have not been retrieved via
33 /// there are remaining errors that haven't been fetched by makeError().
42 /// Returns a single error that contains messages for all stored Errors.
49 /// This ensures an ErrorCollector will treat unhandled errors as fatal.
50 /// This function should be called if errors that usually can be ignored
52 /// but only care about the Errors if no attempt succeeds)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 42 : Error(Error), BeginIndex(Error->Errors.size()) {}
45 // Merge all errors that happened while in this context.
46 if (BeginIndex < Error->Errors.size()) {
47 Diagnostics::ErrorContent &Dest = Error->Errors[BeginIndex];
48 for (size_t i = BeginIndex + 1, e = Error->Errors.size(); i < e; ++i) {
49 Dest.Messages.push_back(Error->Errors[i].Messages[0]);
51 Error->Errors.resize(BeginIndex + 1);
56 // Revert the errors.
57 Error->Errors.resize(BeginIndex);
67 Errors.emplace_back()
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Frontend/
TextDiagnosticBuffer.h 32 DiagList Errors, Warnings, Remarks, Notes;
41 const_iterator err_begin() const { return Errors.begin(); }
42 const_iterator err_end() const { return Errors.end(); }
VerifyDiagnosticConsumer.h 237 DirectiveList Errors;
243 Errors.clear();
298 /// Create a new verifying diagnostic client, which will issue errors to
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
TextDiagnosticBuffer.cpp 21 /// HandleDiagnostic - Store the errors, warnings, and notes that are
25 // Default implementation (Warnings/errors count).
47 All.emplace_back(Level, Errors.size());
48 Errors.emplace_back(Info.getLocation(), std::string(Buf.str()));
70 Diag << Errors[I.second].second;
VerifyDiagnosticConsumer.cpp 460 D.DL = ED ? &ED->Errors : nullptr;
763 /// expected errors and warnings.
1000 NumProblems += CheckLists(Diags, SourceMgr, "error", ED.Errors,
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 58 /// All errors from the system.
124 /// This context will take care of merging all errors that happen within it
131 /// Revert all errors that happened within this context.
163 ArrayRef<ErrorContent> errors() const { return Errors; } function in class:clang::ast_matchers::dynamic::Diagnostics
182 std::vector<ErrorContent> Errors;
  /src/external/gpl3/autoconf/dist/lib/Autom4te/
ChannelDefs.pm 70 Fatal errors. Use C<&fatal> to send messages over this channel.
74 Common errors. Use C<&error> to send messages over this channel.
78 Errors related to GNU Standards.
82 Errors related to GNU Standards that should be warnings in "foreign" mode.
86 Errors related to GNITS Standards (silent by default).
90 Internal errors. Use C<&prog_error> to send messages over this channel.
183 `error' treat warnings as errors";
203 Uncategorized errors.
217 Fatal errors.
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Error.h 9 // This file defines an API used to report recoverable errors.
150 /// that it has a void return type, and requires all errors to be handled and
151 /// no new errors be returned. It prevents errors (assuming they can all be
158 // ErrorList needs to be able to yank ErrorInfoBase pointers out of Errors
185 // Errors are not copy-constructable.
197 /// this constructor can be useful when "re-throwing" errors from handlers.
203 // Errors are not copy-assignable.
376 OS << "Multiple errors:\n";
392 "ErrorList constructor payloads should be singleton errors");
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
MacOSKeychainAPIChecker.cpp 549 AllocationPairVec Errors;
561 Errors.push_back(std::make_pair(I->first, &I->second));
575 for (const auto &P : Errors)
  /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
llvm-profdata.cpp 192 /// Keep track of merged data and reported errors.
196 std::vector<std::pair<Error, std::string>> Errors;
202 : Lock(), Writer(IsSparse), Errors(), ErrLock(ErrLock),
218 WC->Errors.emplace_back(make_error<InstrProfError>(IPE), TestFilename);
247 WC->Errors.emplace_back(make_error<InstrProfError>(IPE), Filename);
256 WC->Errors.emplace_back(
286 WC->Errors.emplace_back(std::move(E), Filename);
291 for (auto &ErrorPair : Src->Errors)
292 Dst->Errors.push_back(std::move(ErrorPair));
293 Src->Errors.clear()
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/clang-format/
ClangFormat.cpp 138 cl::desc("Set the maximum number of clang-format errors to emit before "
144 cl::desc("If set, changes formatting warnings to errors"),
315 unsigned Errors = 0;
330 if (ErrorLimit && ++Errors >= ErrorLimit)
  /src/external/gpl3/binutils/dist/etc/
update-copyright.py 46 class Errors:
176 def __init__ (self, errors):
177 self.errors = errors
313 self.errors.report (pathname,
347 self.errors.report (pathname, 'missing copyright holder')
351 self.errors.report (pathname,
381 self.errors.report (pathname, str (e))
441 self.errors.report (pathname,
448 if changed and self.errors.ok()
    [all...]
  /src/external/gpl3/binutils.old/dist/etc/
update-copyright.py 46 class Errors:
176 def __init__ (self, errors):
177 self.errors = errors
313 self.errors.report (pathname,
347 self.errors.report (pathname, 'missing copyright holder')
351 self.errors.report (pathname,
381 self.errors.report (pathname, str (e))
441 self.errors.report (pathname,
448 if changed and self.errors.ok()
    [all...]
  /src/external/bsd/libpcap/dist/
pcap-tc.c 237 ULONG Errors;
952 pPpiHeader->Dot3Field.Errors = tcHeader.Errors;
  /src/external/apache2/llvm/dist/clang/tools/libclang/
Indexing.cpp 321 SmallVector<StoredDiagnostic, 4> Errors;
327 Errors.push_back(StoredDiagnostic(level, Info));

Completed in 30 milliseconds

1 2