Home
last modified time | relevance | path

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

123

/src/contrib/llvm-project/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 …]
/src/contrib/llvm-project/llvm/lib/Support/
H A DError.cpp78 SmallVector<std::string, 2> Errors; in toString() local
79 handleAllErrors(std::move(E), [&Errors](const ErrorInfoBase &EI) { in toString()
80 Errors.push_back(EI.message()); in toString()
82 return join(Errors.begin(), Errors.end(), "\n"); in toString()
86 SmallVector<std::string, 2> Errors; in toStringWithoutConsuming() local
87 visitErrors(E, [&Errors](const ErrorInfoBase &EI) { in toStringWithoutConsuming()
88 Errors.push_back(EI.message()); in toStringWithoutConsuming()
90 return join(Errors.begin(), Errors.end(), "\n"); in toStringWithoutConsuming()
/src/contrib/llvm-project/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.h89 DirectiveList Errors; member
95 Errors.clear(); in Reset()
/src/sys/netgraph/
H A Dng_deflate.c433 priv->stats.Errors++; in ng_deflate_compress()
441 priv->stats.Errors++; in ng_deflate_compress()
466 priv->stats.Errors++; in ng_deflate_compress()
504 priv->stats.Errors++; in ng_deflate_compress()
541 priv->stats.Errors++; in ng_deflate_decompress()
550 priv->stats.Errors++; in ng_deflate_decompress()
576 priv->stats.Errors++; in ng_deflate_decompress()
599 priv->stats.Errors++; in ng_deflate_decompress()
637 priv->stats.Errors++; in ng_deflate_decompress()
682 priv->stats.Errors++; in ng_deflate_decompress()
H A Dng_pred1.c398 priv->stats.Errors++; in ng_pred1_compress()
406 priv->stats.Errors++; in ng_pred1_compress()
448 priv->stats.Errors++; in ng_pred1_compress()
476 priv->stats.Errors++; in ng_pred1_decompress()
484 priv->stats.Errors++; in ng_pred1_decompress()
508 priv->stats.Errors++; in ng_pred1_decompress()
527 priv->stats.Errors++; in ng_pred1_decompress()
536 priv->stats.Errors++; in ng_pred1_decompress()
546 priv->stats.Errors++; in ng_pred1_decompress()
H A Dng_pred1.h59 uint64_t Errors; member
H A Dng_deflate.h61 uint64_t Errors; member
/src/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnosticBuffer.cpp47 All.emplace_back(Level, Errors.size()); in HandleDiagnostic()
48 Errors.emplace_back(Info.getLocation(), std::string(Buf)); in HandleDiagnostic()
70 Diag << Errors[I.second].second; in FlushDiagnostics()
/src/contrib/sendmail/src/
H A Dsrvrsmtp.c308 if (Errors > 0)
346 r = Errors;
372 Errors = r;
408 sm_dprintf("addbcc: nobcc=%d, Errors=%d, newrcpt=<%s>\n", nobcc, Errors, newrcpt);
409 if (nobcc != EX_OK || Errors > 0 || *newrcpt == '\0')
1554 Errors = 0;
1637 Errors = 0;
2478 Errors > 0)
2888 if (Errors > 0)
2910 if (Errors > 0)
[all …]
H A Dmilter.c3478 olderrors = Errors;
3492 Errors = olderrors;
3548 olderrors = Errors;
3554 if (a != NULL && olderrors == Errors)
3558 if (olderrors == Errors)
3562 olderrors, Errors);
3567 (void *)a, olderrors, Errors);
3570 Errors = olderrors;
3622 olderrors = Errors;
3624 Errors = olderrors;
H A Dmain.c319 Errors = 0;
1123 i = Errors;
1132 if (i < Errors)
2896 if (Errors > 0 && ExitStat == EX_OK)
2924 savederrors = Errors;
2928 Errors = 0;
2933 if (Errors > 0)
2964 Errors = savederrors;
2982 if (Errors == 0)
/src/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp944 Error Errors = Error::success(); in getSectionAndRelocations() local
948 Errors = joinErrors(std::move(Errors), DoesSectionMatch.takeError()); in getSectionAndRelocations()
962 Errors = joinErrors(std::move(Errors), in getSectionAndRelocations()
971 Errors = joinErrors(std::move(Errors), DoesRelTargetMatch.takeError()); in getSectionAndRelocations()
977 if(Errors) in getSectionAndRelocations()
978 return std::move(Errors); in getSectionAndRelocations()
/src/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DDiagnostics.h163 ArrayRef<ErrorContent> errors() const { return Errors; } in errors()
182 std::vector<ErrorContent> Errors; variable
/src/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp612 std::vector<std::pair<Error, std::string>> Errors; member
637 WC->Errors.emplace_back(make_error<InstrProfError>(ErrorCode, Msg), in overlapInput()
674 WC->Errors.emplace_back( in loadInput()
684 WC->Errors.emplace_back(make_error<InstrProfError>(ErrorCode, Msg), in loadInput()
739 WC->Errors.emplace_back(make_error<InstrProfError>(ErrCode, Msg), in loadInput()
747 WC->Errors.emplace_back( in loadInput()
791 WC->Errors.emplace_back(std::move(E), Filename); in loadInput()
798 WC->Errors.emplace_back(std::move(E), Filename); in loadInput()
804 WC->Errors.emplace_back(std::move(ReaderWarning->first), in loadInput()
811 for (auto &ErrorPair : Src->Errors) in mergeWriterContexts()
[all …]
/src/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMacOSKeychainAPIChecker.cpp540 AllocationPairVec Errors; in checkDeadSymbols() local
552 Errors.push_back(std::make_pair(Sym, &AllocState)); in checkDeadSymbols()
566 for (const auto &P : Errors) in checkDeadSymbols()
/src/sys/contrib/openzfs/contrib/pyzfs/
H A DREADME11 Errors are reported as exceptions rather than integer errno-style
/src/tools/build/options/
H A DWITH_META_MODE43 Errors cause
/src/crypto/krb5/src/util/
H A Dt_enum.pm47 * Errors adding elements don't distinguish between "out of memory"
/src/crypto/openssl/doc/man3/
H A DOPENSSL_config.pod23 Errors are silently ignored.
/src/contrib/ntp/
H A DNOTES.y2kfixes50 1) Errors were found in improper use of tm_year within struct tm,
/src/contrib/libpcap/
H A Dpcap-tc.c237 ULONG Errors; member
952 pPpiHeader->Dot3Field.Errors = tcHeader.Errors; in TcRead()
/src/contrib/llvm-project/clang/tools/clang-format/
H A DClangFormat.cpp357 unsigned Errors = 0; in emitReplacementWarnings() local
372 if (ErrorLimit && ++Errors >= ErrorLimit) in emitReplacementWarnings()
/src/sys/contrib/openzfs/contrib/debian/
H A Dcontrol140 of strings in Python. Errors are reported as exceptions rather than integer
161 of strings in Python. Errors are reported as exceptions rather than integer
/src/contrib/arm-optimized-routines/math/
H A DREADME.contributors43 https://www.gnu.org/software/libc/manual/html_mono/libc.html#Errors-in-Math-Functions

123