| /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/games/hangman/ |
| extern.c | 59 int Errors, Wordnum = 0;
|
| /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/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/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/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/gcc/dist/contrib/ |
| update-copyright.py | 50 class Errors: 168 def __init__ (self, errors): 169 self.errors = errors 306 self.errors.report (pathname, 340 self.errors.report (pathname, 'missing copyright holder') 344 self.errors.report (pathname, 368 self.errors.report (pathname, str (e)) 429 self.errors.report (pathname, 436 if changed and self.errors.ok() [all...] |
| /src/external/gpl3/gcc.old/dist/contrib/ |
| update-copyright.py | 50 class Errors: 167 def __init__ (self, errors): 168 self.errors = errors 305 self.errors.report (pathname, 339 self.errors.report (pathname, 'missing copyright holder') 343 self.errors.report (pathname, 367 self.errors.report (pathname, str (e)) 428 self.errors.report (pathname, 435 if changed and self.errors.ok() [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)
|
| MallocChecker.cpp | 18 // errors. 30 // and checks for related double-free and use-after-free errors. 2159 assert(MR && "Only MemRegion based symbols can have offset free errors"); 2165 "Only symbols with a valid offset can have offset free errors"); 2593 SmallVector<SymbolRef, 2> Errors; 2597 Errors.push_back(I->first); 2632 if (!Errors.empty()) { 2637 I = Errors.begin(), E = Errors.end(); I != E; ++I) {
|
| /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/tools/libclang/ |
| Indexing.cpp | 321 SmallVector<StoredDiagnostic, 4> Errors; 327 Errors.push_back(StoredDiagnostic(level, Info));
|
| /src/external/bsd/libpcap/dist/ |
| pcap-tc.c | 237 ULONG Errors; 952 pPpiHeader->Dot3Field.Errors = tcHeader.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/llvm/utils/TableGen/ |
| CodeGenDAGPatterns.cpp | 3385 /// the pattern. Report errors if we see anything naughty. 4009 unsigned Errors = 0; 4031 Errors += InferFromPattern(InstInfo, PatInfo, PTM.getSrcRecord()); 4034 if (Errors) 4073 unsigned Errors = 0; 4115 ++Errors; 4132 if (Errors) 4133 PrintFatalError("Errors in DAG patterns");
|