Searched refs:FoundErrors (Results 1 – 4 of 4) sorted by relevance
19 CodeRegions::CodeRegions(llvm::SourceMgr &S) : SM(S), FoundErrors(false) { in CodeRegions()51 FoundErrors = true; in beginRegion()59 FoundErrors = true; in beginRegion()96 FoundErrors = true; in endRegion()
93 bool FoundErrors; variable124 bool isValid() const { return !FoundErrors; } in isValid()
607 bool FoundErrors = llvm::any_of(Errors, [](const ClangTidyError &E) { in clangTidyMain() local616 const bool DisableFixes = FoundErrors && !FixErrors; in clangTidyMain()650 if (FoundErrors) { in clangTidyMain()
309 unsigned FoundErrors = MachineVerifier(this, Banner.c_str()).verify(MF); in runOnMachineFunction() local310 if (FoundErrors) in runOnMachineFunction()311 report_fatal_error("Found "+Twine(FoundErrors)+" machine code errors."); in runOnMachineFunction()335 unsigned FoundErrors = MachineVerifier(nullptr, Banner.c_str()).verify(MF); in verifyMachineFunction() local336 if (FoundErrors) in verifyMachineFunction()337 report_fatal_error("Found " + Twine(FoundErrors) + " machine code errors."); in verifyMachineFunction()343 unsigned FoundErrors = MachineVerifier(p, Banner).verify(MF); in verify() local344 if (AbortOnErrors && FoundErrors) in verify()345 report_fatal_error("Found "+Twine(FoundErrors)+" machine code errors."); in verify()346 return FoundErrors == 0; in verify()