/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | chkformat.d | 107 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 D | expressionsem.d | 13253 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 D | litlint.py | 53 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 D | process.d | 1169 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 D | getopt.d | 1764 enum errorMsg = "If the request for help was passed required options" ~ in catch() local 1766 assert(false, errorMsg); in catch()
|
H A D | functional.d | 742 string errorMsg() in partial() 752 static assert(0, errorMsg()); in partial()
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | process.d | 629 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 D | getopt.d | 1732 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 D | package.d | 838 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 D | package.d | 845 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 D | date.d | 6707 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 D | date.d | 6542 enum errorMsg = "Invalid day of the year."; variable 6546 if (dayOutOfRange) throw new DateTimeException(errorMsg); 6550 assert(!dayOutOfRange, errorMsg);
|