Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dchkformat.d348 const fmt = parseScanfFormatSpecifier(format, j, asterisk); in checkScanfFormat()
530 Format parseScanfFormatSpecifier(scope const char[] format, ref size_t idx, in parseScanfFormatSpecifier() function
1189 assert(parseScanfFormatSpecifier("%d", idx, asterisk) == Format.d);
1194 assert(parseScanfFormatSpecifier("%hhd", idx, asterisk) == Format.hhd);
1198 assert(parseScanfFormatSpecifier("%hd", idx, asterisk) == Format.hd);
1202 assert(parseScanfFormatSpecifier("%ld", idx, asterisk) == Format.ld);
1206 assert(parseScanfFormatSpecifier("%lld", idx, asterisk) == Format.lld);
1210 assert(parseScanfFormatSpecifier("%jd", idx, asterisk) == Format.jd);
1214 assert(parseScanfFormatSpecifier("%zd", idx, asterisk) == Format.zd);
1218 assert(parseScanfFormatSpecifier("%td", idx, asterisk,) == Format.td);
[all …]