Home
last modified time | relevance | path

Searched refs:errorMsg (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dchkformat.d107 void errorMsg(const char* prefix, Expression arg, const char* texpect, Type tactual) in checkPrintfFormat()
123 errorMsg("width ", e, "int", t); in checkPrintfFormat()
136 errorMsg("precision ", e, "int", t); in checkPrintfFormat()
157 errorMsg(null, e, fmt == Format.u ? "uint" : "int", t); in checkPrintfFormat()
163 errorMsg(null, e, fmt == Format.hhu ? "ubyte" : "byte", t); in checkPrintfFormat()
169 errorMsg(null, e, fmt == Format.hu ? "ushort" : "short", t); in checkPrintfFormat()
177 errorMsg(null, e, (c_longsize == 4 ? "uint" : "ulong"), t); in checkPrintfFormat()
179 errorMsg(null, e, (c_longsize == 4 ? "int" : "long"), t); in checkPrintfFormat()
186 errorMsg(null, e, fmt == Format.llu ? "ulong" : "long", t); in checkPrintfFormat()
194 errorMsg(null, e, "core.stdc.stdint.uintmax_t", t); in checkPrintfFormat()
[all …]
H A Dexpressionsem.d13253 enum errorMsg = "`struct` initializers that contain anonymous unions" ~ in fit() local
13256 .errorSupplemental(loc, errorMsg); in fit()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
H A Dlitlint.py53 errorMsg = 'litlint: {}:{}:{}: error: {}.\n{}{}\n'
55 sys.stderr.write(errorMsg.format(p, i, col, msg, s, arrow))
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dprocess.d1169 string errorMsg;
1173 errorMsg = "Failed to set working directory";
1176 errorMsg = "getrlimit failed";
1179 errorMsg = "Failed to execute '" ~ cast(string) name ~ "'";
1184 errorMsg = "Failed to fork twice";
1187 errorMsg = "Failed to allocate memory";
1190 errorMsg = "Failed to execute preExecFunction";
1196 throw ProcessException.newFromErrno(error, errorMsg);
1197 throw new ProcessException(errorMsg);
H A Dgetopt.d1764 enum errorMsg = "If the request for help was passed required options" ~ in catch() local
1766 assert(false, errorMsg); in catch()
H A Dfunctional.d742 string errorMsg() in partial()
752 static assert(0, errorMsg()); in partial()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dprocess.d629 string errorMsg;
633 errorMsg = "Failed to set working directory";
636 errorMsg = "getrlimit failed";
639 errorMsg = "Failed to execute program";
644 errorMsg = "Failed to fork twice";
650 throw ProcessException.newFromErrno(error, errorMsg);
651 throw new ProcessException(errorMsg);
H A Dgetopt.d1732 enum errorMsg = "If the request for help was passed required options" ~ in catch() local
1734 assert(false, errorMsg); in catch()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/
H A Dpackage.d838 ref T[N] asArray(size_t N, T)(ref T[] source, string errorMsg = "")
840 assert(source.length >= N, errorMsg);
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/digest/
H A Dpackage.d845 ref T[N] asArray(size_t N, T)(ref T[] source, string errorMsg = "")
847 assert(source.length >= N, errorMsg);
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/datetime/
H A Ddate.d6707 enum errorMsg = "Invalid day of the year."; member
6711 if (dayOutOfRange) throw new DateTimeException(errorMsg);
6715 assert(!dayOutOfRange, errorMsg);
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/datetime/
H A Ddate.d6542 enum errorMsg = "Invalid day of the year."; variable
6546 if (dayOutOfRange) throw new DateTimeException(errorMsg);
6550 assert(!dayOutOfRange, errorMsg);