Searched refs:parsePrintfFormatSpecifier (Results 1 – 1 of 1) sorted by relevance
/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
H A D | chkformat.d | 76 const fmt = parsePrintfFormatSpecifier(format, j, widthStar, precisionStar); in checkPrintfFormat() 619 Format parsePrintfFormatSpecifier(scope const char[] format, ref size_t idx, in parsePrintfFormatSpecifier() function 1007 assert(parsePrintfFormatSpecifier("%d", idx, widthStar, precisionStar) == Format.d); 1012 assert(parsePrintfFormatSpecifier("%ld", idx, widthStar, precisionStar) == Format.ld); 1016 assert(parsePrintfFormatSpecifier("%lld", idx, widthStar, precisionStar) == Format.lld); 1020 assert(parsePrintfFormatSpecifier("%jd", idx, widthStar, precisionStar) == Format.jd); 1024 assert(parsePrintfFormatSpecifier("%zd", idx, widthStar, precisionStar) == Format.zd); 1028 assert(parsePrintfFormatSpecifier("%td", idx, widthStar, precisionStar) == Format.td); 1032 assert(parsePrintfFormatSpecifier("%g", idx, widthStar, precisionStar) == Format.g); 1036 assert(parsePrintfFormatSpecifier("%Lg", idx, widthStar, precisionStar) == Format.Lg); [all …]
|