Home
last modified time | relevance | path

Searched defs:msg (Results 1 – 25 of 275) sorted by relevance

1234567891011

/llvm-project/lld/Common/
H A DErrorHandler.cpp27 static StringRef getSeparator(const Twine &msg) { in getSeparator() argument
56 void lld::error(const Twine &msg) { errorHandler().error(msg); } in error() argument
57 void lld::error(const Twine &msg, ErrorTag tag, ArrayRef<StringRef> args) { in error() argument
60 void lld::fatal(const Twine &msg) { errorHandler().fatal(msg); } in fatal() argument
61 void lld::log(const Twine &msg) { errorHandler().log(msg); } in log() argument
62 message(const Twine & msg,llvm::raw_ostream & s) message() argument
65 warn(const Twine & msg) warn() argument
170 getLocation(const Twine & msg) getLocation() argument
208 reportDiagnostic(StringRef location,Colors c,StringRef diagKind,const Twine & msg) reportDiagnostic() argument
224 log(const Twine & msg) log() argument
231 message(const Twine & msg,llvm::raw_ostream & s) message() argument
239 warn(const Twine & msg) warn() argument
253 error(const Twine & msg) error() argument
289 error(const Twine & msg,ErrorTag tag,ArrayRef<StringRef> args) error() argument
334 fatal(const Twine & msg) fatal() argument
[all...]
/llvm-project/compiler-rt/lib/ubsan_minimal/
H A Dubsan_minimal_handlers.cpp10 static void message(const char *msg) { ubsan_message(msg); } in message() argument
12 static void message(const char *msg) { in message() argument
69 abort_with_message(const char * msg) abort_with_message() argument
94 MSG_TMPL(msg) global() argument
95 MSG_TMPL_END(buf,msg) global() argument
97 MSG_BUF_LEN(msg) global() argument
99 HANDLER_RECOVER(name,msg) global() argument
108 HANDLER_NORECOVER(name,msg) global() argument
116 HANDLER(name,msg) global() argument
/llvm-project/libcxx/test/libcxx/strings/string.view/string.view.iterators/
H A Dassert.iterator-indexing.pass.cpp46 [[maybe_unused]] const char* msg = in test_iterator() local
57 [[maybe_unused]] const char* msg = in test_iterator() local
68 [[maybe_unused]] const char* msg = in test_iterator() local
81 [[maybe_unused]] const char* msg = in test_iterator() local
94 [[maybe_unused]] const char* msg = in test_iterator() local
107 [[maybe_unused]] const char* msg = in test_iterator() local
/llvm-project/openmp/runtime/tools/
H A Dlibomputils.py19 def __init__(self, msg): argument
23 def error(msg): argument
27 def print_line(msg, form="i"): argument
31 def print_info_line(msg): argument
35 def print_error_line(msg): argument
/llvm-project/llvm/include/llvm/Support/
H A DErrorHandling.h143 #define llvm_unreachable(msg) \ argument
146 #define llvm_unreachable(msg) ::llvm::llvm_unreachable_internal() argument
148 #define llvm_unreachable(msg) LLVM_BUILTIN_UNREACHABLE argument
150 #define llvm_unreachable(msg) \ argument
/llvm-project/libcxx/test/libcxx/containers/views/views.span/
H A Dassert.iterator-indexing.pass.cpp50 [[maybe_unused]] const char* msg = in test_iterator() local
60 [[maybe_unused]] const char* msg = in test_iterator() local
70 [[maybe_unused]] const char* msg = in test_iterator() local
83 [[maybe_unused]] const char* msg = in test_iterator() local
96 [[maybe_unused]] const char* msg = in test_iterator() local
109 [[maybe_unused]] const char* msg = in test_iterator() local
/llvm-project/lld/wasm/
H A DWriterUtils.cpp83 void debugWrite(uint64_t offset, const Twine &msg) { in debugWrite()
88 void writeUleb128(raw_ostream &os, uint64_t number, const Twine &msg) { in writeUleb128()
93 void writeSleb128(raw_ostream &os, int64_t number, const Twine &msg) { in writeSleb128()
99 const Twine &msg) { in writeBytes()
104 void writeStr(raw_ostream &os, StringRef string, const Twine &msg) { in writeStr()
111 void writeU8(raw_ostream &os, uint8_t byte, const Twine &msg) { in writeU8()
116 void writeU32(raw_ostream &os, uint32_t number, const Twine &msg) { in writeU32()
121 void writeU64(raw_ostream &os, uint64_t number, const Twine &msg) { in writeU64()
126 void writeValueType(raw_ostream &os, ValType type, const Twine &msg) { in writeValueType()
143 void writeI32Const(raw_ostream &os, int32_t number, const Twine &msg) { in writeI32Const()
[all …]
/llvm-project/libunwind/src/
H A Dconfig.h150 #define _LIBUNWIND_ABORT(msg) \ argument
155 #define _LIBUNWIND_ABORT(msg) \ argument
164 #define _LIBUNWIND_LOG0(msg) argument
165 #define _LIBUNWIND_LOG(msg, ...) argument
167 #define _LIBUNWIND_LOG0(msg) do { \ argument
171 #define _LIBUNWIND_LOG(msg, ...) do { \ argument
190 #define _LIBUNWIND_DEBUG_LOG(msg, ...) argument
191 #define _LIBUNWIND_TRACE_API(msg, ...) argument
194 #define _LIBUNWIND_TRACE_UNWINDING(msg, ...) argument
206 #define _LIBUNWIND_DEBUG_LOG(msg, ...) _LIBUNWIND_LOG(msg, __VA_ARGS__) argument
[all …]
/llvm-project/libc/cmake/modules/
H A DLLVMLibCTestRules.cmake169 set(msg "Skipping unittest ${fq_target_name} as it has missing deps: " global() variable
302 set(msg "Skipping fuzzer target ${fq_target_name} as it has missing deps: " global() variable
432 set(msg "Skipping integration test ${fq_target_name} as it has missing deps: " global() variable
607 set(msg "Skipping hermetic test ${fq_target_name} as it has missing deps: " global() variable
/llvm-project/cross-project-tests/debuginfo-tests/dexter/dex/utils/
H A DLogging.py20 def error(self, msg, enable_prefix=True, flag=None): argument
29 def warning(self, msg, enable_prefix=True, flag=None): argument
38 def note(self, msg, enable_prefix=True, flag=None): argument
/llvm-project/clang/test/CodeGen/
H A Dstack-protector.c19 void test1(const char *msg) { in test1()
27 void test2(const char *msg) { in test2()
/llvm-project/libcxx/test/std/diagnostics/std.exceptions/domain.error/
H A Ddomain_error.pass.cpp26 const char* msg = "domain_error message"; in main() local
35 std::string msg("another domain_error message"); in main() local
/llvm-project/libcxx/test/std/utilities/format/format.error/
H A Dformat.error.pass.cpp28 const char* msg = "format_error message c-string"; in main() local
37 std::string msg("format_error message std::string"); in main() local
/llvm-project/libcxx/test/std/diagnostics/std.exceptions/length.error/
H A Dlength_error.pass.cpp26 const char* msg = "length_error message"; in main() local
35 std::string msg("another length_error message"); in main() local
/llvm-project/libcxx/test/std/diagnostics/std.exceptions/range.error/
H A Drange_error.pass.cpp26 const char* msg = "range_error message"; in main() local
35 std::string msg("another range_error message"); in main() local
/llvm-project/libcxx/test/std/diagnostics/std.exceptions/invalid.argument/
H A Dinvalid_argument.pass.cpp26 const char* msg = "invalid_argument message"; in main() local
35 std::string msg("another invalid_argument message"); in main() local
/llvm-project/libcxx/test/std/diagnostics/std.exceptions/runtime.error/
H A Druntime_error.pass.cpp26 const char* msg = "runtime_error message"; in main() local
35 std::string msg("another runtime_error message"); in main() local
/llvm-project/libcxx/test/std/diagnostics/std.exceptions/logic.error/
H A Dlogic_error.pass.cpp26 const char* msg = "logic_error message"; in main() local
35 std::string msg("another logic_error message"); in main() local
/llvm-project/libcxx/test/std/diagnostics/std.exceptions/overflow.error/
H A Doverflow_error.pass.cpp26 const char* msg = "overflow_error message"; in main() local
35 std::string msg("another overflow_error message"); in main() local
/llvm-project/libcxx/test/std/diagnostics/std.exceptions/out.of.range/
H A Dout_of_range.pass.cpp26 const char* msg = "out_of_range message"; in main() local
35 std::string msg("another out_of_range message"); in main() local
/llvm-project/libcxx/test/std/diagnostics/std.exceptions/underflow.error/
H A Dunderflow_error.pass.cpp26 const char* msg = "underflow_error message"; in main() local
35 std::string msg("another underflow_error message"); in main() local
/llvm-project/polly/lib/External/isl/imath/
H A Drsamath.c55 mp_result rsa_rsaep(mp_int msg, mp_int exp, mp_int mod, mp_int cipher) { in rsa_rsaep()
60 mp_result rsa_rsadp(mp_int cipher, mp_int exp, mp_int mod, mp_int msg) { in rsa_rsadp()
65 mp_result rsa_rsasp(mp_int msg, mp_int exp, mp_int mod, mp_int signature) { in rsa_rsasp()
70 mp_result rsa_rsavp(mp_int signature, mp_int exp, mp_int mod, mp_int msg) { in rsa_rsavp()
139 static mp_result s_rsa_transform(mp_int msg, mp_int exp, mp_int mod, in s_rsa_transform()
/llvm-project/offload/DeviceRTL/include/
H A DDebug.h29 #define ASSERT(expr, msg) \ argument
37 #define UNREACHABLE(msg) \ argument
/llvm-project/flang/runtime/
H A Dio-error.cpp21 void IoErrorHandler::SignalError(int iostatOrErrno, const char *msg, ...) { in SignalError() argument
92 Forward(int ioStatOrErrno,const char * msg,std::size_t length) Forward() argument
115 const char *msg{ioMsg_.get()}; GetIoMsg() local
[all...]
/llvm-project/compiler-rt/test/asan/TestCases/Linux/
H A Dlongjmp_chk.c24 void external_longjmp(char *msg) { in external_longjmp()
41 char msg[16]; /* Note: this triggers addition of a redzone. */ in callback() local

1234567891011