Home
last modified time | relevance | path

Searched refs:error_msg (Results 1 – 17 of 17) sorted by relevance

/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectMultiword.cpp199 std::string error_msg; in Execute() local
202 error_msg.assign("ambiguous command "); in Execute()
204 error_msg.assign("invalid command "); in Execute()
206 error_msg.append("'"); in Execute()
208 error_msg.append(" "); in Execute()
209 error_msg.append(std::string(sub_command)); in Execute()
210 error_msg.append("'."); in Execute()
215 error_msg.append("\n\t"); in Execute()
216 error_msg.append(match); in Execute()
219 error_msg.append("\n"); in Execute()
[all …]
/llvm-project-15.0.7/lldb/test/API/lang/c/calling-conventions/
H A DTestCCallingConventions.py27 error_msg = str(e)
30 if "calling convention is not supported for this target" in error_msg:
33 if "attribute ignored" in error_msg:
35 if "attribute directive ignored " in error_msg:
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DScriptedInterface.h35 llvm::StringRef error_msg, Status &error,
38 error_msg.data());
40 llvm::Twine(error_msg))
/llvm-project-15.0.7/lldb/test/API/functionalities/lazy-loading/
H A DTestLazyLoading.py123 error_msg = "Unexpected completed decl: '" + line + "'.\nAST:\n" + ast
124 self.assertFalse(self.decl_completed_in_line(line, decl), error_msg)
134 error_msg = "Unexpected loaded decl: '" + line + "'\nAST:\n" + ast
135 self.assertFalse(self.decl_in_line(line, decl), error_msg)
/llvm-project-15.0.7/libcxx/test/support/
H A Dcheck_assertion.h174 std::string error_msg; in ReadChildIOUntilEnd() local
180 error_msg += buffer; in ReadChildIOUntilEnd()
183 return error_msg; in ReadChildIOUntilEnd()
/llvm-project-15.0.7/clang/lib/Tooling/DumpTool/
H A DClangSrcLocDump.cpp125 SmallString<256> error_msg; in main() local
126 llvm::raw_svector_ostream error_stream(error_msg); in main()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbtest.py274 def check_value(self, test_base, val, error_msg=None): argument
283 this_error_msg = error_msg if error_msg else ""
301 self.check_value_children(test_base, val, error_msg)
303 def check_value_children(self, test_base, val, error_msg=None): argument
312 this_error_msg = error_msg if error_msg else ""
320 child_error = "Checking child with index " + str(i) + ":\n" + error_msg
2098 error_msg = ""
2102 error_msg += "Missing pairs:\n"
2104 error_msg += " [" + pair[0] + ":" + pair[1] + "]\n"
2107 error_msg += out_of_order_errors
[all …]
/llvm-project-15.0.7/polly/lib/External/isl/
H A Disl_ctx.c125 ctx->error_msg = msg; in isl_ctx_set_full_error()
330 return ctx ? ctx->error_msg : NULL; in isl_ctx_last_error_msg()
352 ctx->error_msg = NULL; in isl_ctx_reset_error()
H A Disl_ctx_private.h34 const char *error_msg; member
/llvm-project-15.0.7/third-party/benchmark/src/
H A Dbenchmark_register.cc117 std::string error_msg; in FindBenchmarks() local
124 if (!re.Init(spec, &error_msg)) { in FindBenchmarks()
125 Err << "Could not compile benchmark re: " << error_msg << std::endl; in FindBenchmarks()
/llvm-project-15.0.7/lldb/source/Host/windows/
H A DConnectionGenericFileWindows.cpp36 void Set(size_t bytes, ConnectionStatus status, llvm::StringRef error_msg) { in Set() argument
37 m_error.SetErrorString(error_msg.data()); in Set()
/llvm-project-15.0.7/clang/tools/scan-build-py/tests/unit/
H A Dtest_analyze.py197 error_msg = 'this is my error output'
207 'error_output': error_msg,
232 self.assertEqual([error_msg], result[error_file])
/llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/
H A DTestGDBRemoteClient.py43 error_msg = "mock-error-msg"
55 return "E42;" + binascii.hexlify(error_msg.encode()).decode()
65 self.assertEquals(error_msg, error.GetCString())
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_errors.cpp361 InternalScopedString error_msg; in Print() local
362 error_msg.append("%s: global '%s' at %s", scariness.GetDescription(), in Print()
364 ReportErrorSummary(error_msg.data()); in Print()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2526 llvm::StringRef error_msg = tmp_result.GetErrorData(); in HandleCommands() local
2527 if (error_msg.empty()) in HandleCommands()
2528 error_msg = "<unknown error>.\n"; in HandleCommands()
2533 (uint64_t)idx, cmd, error_msg.str().c_str()); in HandleCommands()
2539 error_msg.str().c_str()); in HandleCommands()
3397 StreamString error_msg; in ResolveCommandImpl() local
3398 error_msg.Printf("Ambiguous command '%s'. Possible matches:\n", in ResolveCommandImpl()
3402 error_msg.Printf("\t%s\n", matches.GetStringAtIndex(i)); in ResolveCommandImpl()
3404 result.AppendRawError(error_msg.GetString()); in ResolveCommandImpl()
/llvm-project-15.0.7/lldb/cmake/modules/
H A DAddLLDB.cmake324 ERROR_VARIABLE error_msg
327 message(WARNING "`xcode-select -p` failed:\n${error_msg}")
/llvm-project-15.0.7/clang/lib/Tooling/
H A DTooling.cpp151 SmallString<256> error_msg; in getCC1Arguments() local
152 llvm::raw_svector_ostream error_stream(error_msg); in getCC1Arguments()