Home
last modified time | relevance | path

Searched defs:CustomError (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/compiler-rt/lib/orc/unittests/
H A Derror_test.cpp24 class CustomError : public RTTIExtends<CustomError, ErrorInfoBase> { class
26 CustomError(int V1) : V1(V1) {} in CustomError() function in __anon5752f2910111::CustomError
/llvm-project-15.0.7/llvm/unittests/Support/
H A DErrorTest.cpp25 class CustomError : public ErrorInfo<CustomError> { class
28 CustomError(int Info) : Info(Info) {} in CustomError() function in __anonad7eff120111::CustomError
50 CustomError() : Info(0) {} in CustomError() function in __anonad7eff120111::CustomError
694 [](const CustomError&) { /* do nothing */ }); in TEST()
/llvm-project-15.0.7/bolt/tools/merge-fdata/
H A Dmerge-fdata.cpp85 static void report_error(Twine Message, StringRef CustomError) { in report_error()