Home
last modified time | relevance | path

Searched refs:hasErrors (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DGeneratePCH.cpp46 bool hasErrors = PP.getDiagnostics().hasErrorOccurred(); in HandleTranslationUnit() local
47 if (hasErrors && !AllowASTWithErrors) in HandleTranslationUnit()
55 assert(hasErrors && "emitting module but current module doesn't exist"); in HandleTranslationUnit()
H A DASTWriter.cpp4286 bool hasErrors, in WriteAST() argument
4290 ASTHasCompilerErrors = hasErrors; in WriteAST()
H A DASTReader.cpp2760 bool hasErrors = Record[6]; in ReadControlBlock() local
2761 if (hasErrors && !DisableValidation) { in ReadControlBlock()
2773 if (hasErrors) { in ReadControlBlock()
/netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DARCMT.cpp86 bool CapturedDiagList::hasErrors() const { in hasErrors() function in CapturedDiagList
331 return capturedDiags.hasErrors() || testAct.hasReportedErrors(); in checkForManualIssues()
557 HadARCErrors = HadARCErrors || capturedDiags.hasErrors(); in applyTransform()
H A DInternals.h38 bool hasErrors() const;
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Frontend/
H A DUtils.h176 virtual bool hasErrors() { return HasErrors; } in hasErrors() function
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DASTUnit.cpp2301 bool hasErrors, in serializeUnit() argument
2303 Writer.WriteAST(S, std::string(), nullptr, "", hasErrors); in serializeUnit()
2314 bool hasErrors = getDiagnostics().hasUncompilableErrorOccurred(); in serialize() local
2318 getSema(), hasErrors, OS); in serialize()
2324 return serializeUnit(Writer, Buffer, getSema(), hasErrors, OS); in serialize()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Serialization/
H A DASTWriter.h585 bool hasErrors = false,