Home
last modified time | relevance | path

Searched refs:Errors (Results 1 – 25 of 137) sorted by relevance

123456

/openbsd-src/gnu/llvm/llvm/tools/llvm-ifs/
H A DErrorCollector.cpp23 Errors.push_back(std::move(Err)); in addError()
32 for (Error &E : Errors) { in makeError()
35 Errors.clear(); in makeError()
42 for (size_t i = 0; i < Errors.size(); ++i) { in log()
43 WithColor::error(OS) << "(" << Tags[i] << ") " << Errors[i]; in log()
44 if (i != Errors.size() - 1) in log()
49 bool ErrorCollector::allErrorsHandled() const { return Errors.empty(); } in allErrorsHandled()
55 for (Error &E : Errors) { in ~ErrorCollector()
H A DErrorCollector.h69 std::vector<Error> Errors; variable
/openbsd-src/gnu/llvm/clang/lib/ASTMatchers/Dynamic/
H A DDiagnostics.cpp42 : Error(Error), BeginIndex(Error->Errors.size()) {} in OverloadContext()
46 if (BeginIndex < Error->Errors.size()) { in ~OverloadContext()
47 Diagnostics::ErrorContent &Dest = Error->Errors[BeginIndex]; in ~OverloadContext()
48 for (size_t i = BeginIndex + 1, e = Error->Errors.size(); i < e; ++i) { in ~OverloadContext()
49 Dest.Messages.push_back(Error->Errors[i].Messages[0]); in ~OverloadContext()
51 Error->Errors.resize(BeginIndex + 1); in ~OverloadContext()
57 Error->Errors.resize(BeginIndex); in revertErrors()
67 Errors.emplace_back(); in addError()
68 ErrorContent &Last = Errors.back(); in addError()
197 for (size_t i = 0, e = Errors.size(); i != e; ++i) { in printToStream()
[all …]
/openbsd-src/games/hangman/
H A Dendgame.c48 if (Errors >= MAXERRS) in endgame()
49 Errors = MAXERRS + 2; in endgame()
53 if (Errors > MAXERRS) in endgame()
H A Dplaygame.c51 Errors = 0; in playgame()
54 while (Errors < MAXERRS && strchr(Known, '-') != NULL) { in playgame()
H A Dextern.c52 int Errors, Wordnum = 0; variable
H A Dprman.c47 for (i = 0; i < Errors; i++) in prman()
H A Dprdata.c56 (Average * (Wordnum - 1) + Errors) / Wordnum); in prdata()
H A Dmain.c84 Average = (Average * (Wordnum - 1) + Errors) / Wordnum; in main()
H A Dhangman.h68 extern int Errors, Wordnum;
H A Dgetguess.c103 Errors++; in getguess()
/openbsd-src/gnu/llvm/clang/include/clang/Frontend/
H A DTextDiagnosticBuffer.h32 DiagList Errors, Warnings, Remarks, Notes;
41 const_iterator err_begin() const { return Errors.begin(); } in err_begin()
42 const_iterator err_end() const { return Errors.end(); } in err_end()
H A DVerifyDiagnosticConsumer.h237 DirectiveList Errors; member
243 Errors.clear(); in Reset()
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DTextDiagnosticBuffer.cpp47 All.emplace_back(Level, Errors.size()); in HandleDiagnostic()
48 Errors.emplace_back(Info.getLocation(), std::string(Buf.str())); in HandleDiagnostic()
70 Diag << Errors[I.second].second; in FlushDiagnostics()
/openbsd-src/gnu/usr.bin/perl/cpan/Text-Tabs/t/
H A DTabs-ElCid.t7 our $Errors = 0;
55 $Errors += table_ok();
58 if ($Errors) {
59 die "Error count: $Errors";
152 $Errors += $bad;
H A DWrap-JLB.t9 our $Errors = 0;
39 $Errors += table_ok();
42 if ($Errors) {
43 die "Error count: $Errors";
127 $Errors += $bad;
/openbsd-src/gnu/llvm/clang/include/clang/ASTMatchers/Dynamic/
H A DDiagnostics.h163 ArrayRef<ErrorContent> errors() const { return Errors; } in errors()
182 std::vector<ErrorContent> Errors; variable
/openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/text/
H A Derror-stderr2 Errors to standard error
H A Derror-stderr-opt2 Errors to standard error with stderr option
H A Derror-die2 Errors throw exceptions
H A Derror-pod2 Errors to POD source
/openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/man/
H A Derror-stderr2 Errors to standard error
H A Derror-stderr-opt2 Errors to standard error with stderr option
H A Derror-die2 Errors throw exceptions
H A Derror-pod2 Errors to POD source

123456