| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | JSONCompilationDatabase.cpp | 210 if (!Database->parse(ErrorMessage)) in loadFromFile() 223 if (!Database->parse(ErrorMessage)) in loadFromBuffer() 335 ErrorMessage = "Error while parsing YAML."; in parse() 340 ErrorMessage = "Error while parsing YAML."; in parse() 345 ErrorMessage = "Expected array."; in parse() 351 ErrorMessage = "Expected object."; in parse() 361 ErrorMessage = "Expected strings as key."; in parse() 368 ErrorMessage = "Expected value."; in parse() 402 ErrorMessage = in parse() 409 ErrorMessage = "Missing key: \"file\"."; in parse() [all …]
|
| H A D | CommonOptionsParser.cpp | 109 std::string ErrorMessage; in init() local 111 FixedCompilationDatabase::loadFromCommandLine(argc, argv, ErrorMessage); in init() 112 if (!ErrorMessage.empty()) in init() 113 ErrorMessage.append("\n"); in init() 114 llvm::raw_string_ostream OS(ErrorMessage); in init() 118 return llvm::make_error<llvm::StringError>(ErrorMessage, in init() 131 CompilationDatabase::autoDetectFromDirectory(BuildPath, ErrorMessage); in init() 134 ErrorMessage); in init() 138 << ErrorMessage << "Running without flags.\n"; in init()
|
| H A D | CompilationDatabase.cpp | 65 std::string &ErrorMessage) { in loadFromDirectory() argument 66 llvm::raw_string_ostream ErrorStream(ErrorMessage); in loadFromDirectory() 81 std::string &ErrorMessage) { in findCompilationDatabaseFromDirectory() argument 99 ErrorMessage = ErrorStream.str(); in findCompilationDatabaseFromDirectory() 105 std::string &ErrorMessage) { in autoDetectFromSource() argument 110 findCompilationDatabaseFromDirectory(Directory, ErrorMessage); in autoDetectFromSource() 113 ErrorMessage = ("Could not auto-detect compilation database for file \"" + in autoDetectFromSource() 114 SourceFile + "\"\n" + ErrorMessage).str(); in autoDetectFromSource() 120 std::string &ErrorMessage) { in autoDetectFromDirectory() argument 124 findCompilationDatabaseFromDirectory(AbsolutePath, ErrorMessage); in autoDetectFromDirectory() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ |
| H A D | TargetMachineC.cpp | 67 char **ErrorMessage) { in LLVMGetTargetFromTriple() argument 73 if (ErrorMessage) in LLVMGetTargetFromTriple() 74 *ErrorMessage = strdup(Error.c_str()); in LLVMGetTargetFromTriple() 188 char **ErrorMessage) { in LLVMTargetMachineEmit() argument 209 *ErrorMessage = strdup(error.c_str()); in LLVMTargetMachineEmit() 220 char* Filename, LLVMCodeGenFileType codegen, char** ErrorMessage) { in LLVMTargetMachineEmitToFile() argument 224 *ErrorMessage = strdup(EC.message().c_str()); in LLVMTargetMachineEmitToFile() 227 bool Result = LLVMTargetMachineEmit(T, M, dest, codegen, ErrorMessage); in LLVMTargetMachineEmitToFile() 233 LLVMModuleRef M, LLVMCodeGenFileType codegen, char** ErrorMessage, in LLVMTargetMachineEmitToMemoryBuffer() argument 237 bool Result = LLVMTargetMachineEmit(T, M, OStream, codegen, ErrorMessage); in LLVMTargetMachineEmitToMemoryBuffer()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Tooling/ |
| H A D | JSONCompilationDatabase.h | 68 loadFromFile(StringRef FilePath, std::string &ErrorMessage, 75 loadFromBuffer(StringRef DatabaseString, std::string &ErrorMessage, 106 bool parse(std::string &ErrorMessage);
|
| H A D | CompilationDatabase.h | 104 loadFromDirectory(StringRef BuildDirectory, std::string &ErrorMessage); 111 autoDetectFromSource(StringRef SourceFile, std::string &ErrorMessage); 118 autoDetectFromDirectory(StringRef SourceDir, std::string &ErrorMessage);
|
| H A D | CompilationDatabasePluginRegistry.h | 36 loadFromDirectory(StringRef Directory, std::string &ErrorMessage) = 0;
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm-c/ |
| H A D | TargetMachine.h | 77 char **ErrorMessage); 133 char *Filename, LLVMCodeGenFileType codegen, char **ErrorMessage); 137 LLVMCodeGenFileType codegen, char** ErrorMessage, LLVMMemoryBufferRef *OutMemBuf);
|
| H A D | Object.h | 76 char **ErrorMessage); 118 char **ErrorMessage);
|
| H A D | Core.h | 839 char **ErrorMessage);
|
| /freebsd-13.1/contrib/googletest/ |
| H A D | appveyor.yml | 73 throw "Exec: $ErrorMessage" 78 throw "Exec: $ErrorMessage" 97 throw "Exec: $ErrorMessage"
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | Object.cpp | 66 char **ErrorMessage) { in LLVMCreateBinary() argument 71 *ErrorMessage = strdup(toString(ObjOrErr.takeError()).c_str()); in LLVMCreateBinary() 138 char **ErrorMessage) { in LLVMMachOUniversalBinaryCopyObjectForArch() argument 143 *ErrorMessage = strdup(toString(ObjOrErr.takeError()).c_str()); in LLVMMachOUniversalBinaryCopyObjectForArch()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | AMDGPU.cpp | 755 std::string ErrorMessage; in detectSystemGPUs() local 758 /*MemoryLimit*/ 0, &ErrorMessage)) { in detectSystemGPUs() 760 ErrorMessage = "Exited with error code " + std::to_string(Result); in detectSystemGPUs() 762 ErrorMessage = "Execute failed: " + ErrorMessage; in detectSystemGPUs() 764 ErrorMessage = "Crashed: " + ErrorMessage; in detectSystemGPUs() 768 Program + ": " + ErrorMessage); in detectSystemGPUs()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/TextAPI/ |
| H A D | TextAPIContext.h | 24 std::string ErrorMessage; member
|
| H A D | TextStub.cpp | 1106 File->ErrorMessage = ("malformed file\n" + Message).str(); in DiagHandler() 1129 return make_error<StringError>(Ctx.ErrorMessage, YAMLIn.error()); in get()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | JSON.cpp | 212 R->ErrorMessage = Msg; in report() 222 OS << (ErrorMessage.empty() ? "invalid JSON contents" : ErrorMessage); in getError() 316 Comment.append(ErrorMessage.data(), ErrorMessage.size()); in printErrorContext()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | JSON.h | 619 llvm::StringLiteral ErrorMessage; variable 625 Root(llvm::StringRef Name = "") : Name(Name), ErrorMessage("") {} in Name()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | SourcePrinter.cpp | 375 std::string ErrorMessage; in printSourceLine() local
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CStringChecker.cpp | 53 using ErrorMessage = SmallString<128>; typedef 56 static ErrorMessage createOutOfBoundErrorMsg(StringRef FunctionDescription, in createOutOfBoundErrorMsg() 58 ErrorMessage Message; in createOutOfBoundErrorMsg() 364 ErrorMessage Message = in CheckLocation()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | CompilerInvocation.cpp | 2628 std::string ErrorMessage = in ParseFrontendArgs() local 2634 << ErrorMessage; in ParseFrontendArgs() 2637 std::string ErrorMessage = in ParseFrontendArgs() local 2642 << ErrorMessage; in ParseFrontendArgs()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Core.cpp | 413 char **ErrorMessage) { in LLVMPrintModuleToFile() argument 417 *ErrorMessage = strdup(EC.message().c_str()); in LLVMPrintModuleToFile() 427 *ErrorMessage = strdup(E.c_str()); in LLVMPrintModuleToFile()
|