Searched refs:FoundErrors (Results 1 – 7 of 7) 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()97 FoundErrors = true; in endRegion()
93 bool FoundErrors; variable124 bool isValid() const { return !FoundErrors; } in isValid()
485 bool FoundErrors = llvm::find_if(Errors, [](const ClangTidyError &E) { in clangTidyMain() local489 const bool DisableFixes = Fix && FoundErrors && !FixErrors; in clangTidyMain()524 if (FoundErrors) { in clangTidyMain()
290 unsigned FoundErrors = MachineVerifier(this, Banner.c_str()).verify(MF); in runOnMachineFunction() local291 if (FoundErrors) in runOnMachineFunction()292 report_fatal_error("Found "+Twine(FoundErrors)+" machine code errors."); in runOnMachineFunction()316 unsigned FoundErrors = MachineVerifier(nullptr, Banner.c_str()).verify(MF); in verifyMachineFunction() local317 if (FoundErrors) in verifyMachineFunction()318 report_fatal_error("Found " + Twine(FoundErrors) + " machine code errors."); in verifyMachineFunction()324 unsigned FoundErrors = MachineVerifier(p, Banner).verify(MF); in verify() local325 if (AbortOnErrors && FoundErrors) in verify()326 report_fatal_error("Found "+Twine(FoundErrors)+" machine code errors."); in verify()327 return FoundErrors == 0; in verify()
272 unsigned FoundErrors = MachineVerifier(this, Banner.c_str()).verify(MF); in runOnMachineFunction() local273 if (FoundErrors) in runOnMachineFunction()274 report_fatal_error("Found "+Twine(FoundErrors)+" machine code errors."); in runOnMachineFunction()292 unsigned FoundErrors = MachineVerifier(p, Banner).verify(MF); in verify() local293 if (AbortOnErrors && FoundErrors) in verify()294 report_fatal_error("Found "+Twine(FoundErrors)+" machine code errors."); in verify()295 return FoundErrors == 0; in verify()
311 unsigned FoundErrors = MachineVerifier(this, Banner.c_str()).verify(MF); in runOnMachineFunction() local312 if (FoundErrors) in runOnMachineFunction()313 report_fatal_error("Found "+Twine(FoundErrors)+" machine code errors."); in runOnMachineFunction()332 unsigned FoundErrors = MachineVerifier(p, Banner).verify(MF); in verify() local333 if (AbortOnErrors && FoundErrors) in verify()334 report_fatal_error("Found "+Twine(FoundErrors)+" machine code errors."); in verify()335 return FoundErrors == 0; in verify()
320 bool FoundErrors() const { return found_errors_; } in FoundErrors() function in google::protobuf::compiler::CommandLineInterface::ErrorPrinter970 if (error_collector->FoundErrors()) { in Run()