Lines Matching refs:TestFPrintFormat

1120 #define TestFPrintFormat(uFormat, uValue, cFormat, cValue) \  macro
1158 TestFPrintFormat("%8S", abcUChars, "%8s", abcChars); in TestFprintfFormat()
1159 TestFPrintFormat("%-8S", abcUChars, "%-8s", abcChars); in TestFprintfFormat()
1160 TestFPrintFormat("%.2S", abcUChars, "%.2s", abcChars); /* strlen is 3 */ in TestFprintfFormat()
1162 TestFPrintFormat("%8s", abcChars, "%8s", abcChars); in TestFprintfFormat()
1163 TestFPrintFormat("%-8s", abcChars, "%-8s", abcChars); in TestFprintfFormat()
1164 TestFPrintFormat("%.2s", abcChars, "%.2s", abcChars); /* strlen is 3 */ in TestFprintfFormat()
1166 TestFPrintFormat("%8c", (char)'e', "%8c", (char)'e'); in TestFprintfFormat()
1167 TestFPrintFormat("%-8c", (char)'e', "%-8c", (char)'e'); in TestFprintfFormat()
1169 TestFPrintFormat("%8C", (UChar)0x65, "%8c", (char)'e'); in TestFprintfFormat()
1170 TestFPrintFormat("%-8C", (UChar)0x65, "%-8c", (char)'e'); in TestFprintfFormat()
1172 TestFPrintFormat("%f", 1.23456789, "%f", 1.23456789); in TestFprintfFormat()
1173 TestFPrintFormat("%f", 12345.6789, "%f", 12345.6789); in TestFprintfFormat()
1174 TestFPrintFormat("%f", 123456.789, "%f", 123456.789); in TestFprintfFormat()
1175 TestFPrintFormat("%f", 1234567.89, "%f", 1234567.89); in TestFprintfFormat()
1176 TestFPrintFormat("%10f", 1.23456789, "%10f", 1.23456789); in TestFprintfFormat()
1177 TestFPrintFormat("%-10f", 1.23456789, "%-10f", 1.23456789); in TestFprintfFormat()
1178 TestFPrintFormat("%10f", 123.456789, "%10f", 123.456789); in TestFprintfFormat()
1179 TestFPrintFormat("%10.4f", 123.456789, "%10.4f", 123.456789); in TestFprintfFormat()
1180 TestFPrintFormat("%-10f", 123.456789, "%-10f", 123.456789); in TestFprintfFormat()
1187 TestFPrintFormat("%10g", 1.23456789, "%10g", 1.23456789); in TestFprintfFormat()
1188 TestFPrintFormat("%10.4g", 1.23456789, "%10.4g", 1.23456789); in TestFprintfFormat()
1189 TestFPrintFormat("%-10g", 1.23456789, "%-10g", 1.23456789); in TestFprintfFormat()
1190 TestFPrintFormat("%10g", 123.456789, "%10g", 123.456789); in TestFprintfFormat()
1191 TestFPrintFormat("%-10g", 123.456789, "%-10g", 123.456789); in TestFprintfFormat()
1193 TestFPrintFormat("%8x", 123456, "%8x", 123456); in TestFprintfFormat()
1194 TestFPrintFormat("%-8x", 123456, "%-8x", 123456); in TestFprintfFormat()
1195 TestFPrintFormat("%08x", 123456, "%08x", 123456); in TestFprintfFormat()
1197 TestFPrintFormat("%8X", 123456, "%8X", 123456); in TestFprintfFormat()
1198 TestFPrintFormat("%-8X", 123456, "%-8X", 123456); in TestFprintfFormat()
1199 TestFPrintFormat("%08X", 123456, "%08X", 123456); in TestFprintfFormat()
1200 TestFPrintFormat("%#x", 123456, "%#x", 123456); in TestFprintfFormat()
1201 TestFPrintFormat("%#x", -123456, "%#x", -123456); in TestFprintfFormat()
1203 TestFPrintFormat("%8o", 123456, "%8o", 123456); in TestFprintfFormat()
1204 TestFPrintFormat("%-8o", 123456, "%-8o", 123456); in TestFprintfFormat()
1205 TestFPrintFormat("%08o", 123456, "%08o", 123456); in TestFprintfFormat()
1206 TestFPrintFormat("%#o", 123, "%#o", 123); in TestFprintfFormat()
1207 TestFPrintFormat("%#o", -123, "%#o", -123); in TestFprintfFormat()
1209 TestFPrintFormat("%8u", 123456, "%8u", 123456); in TestFprintfFormat()
1210 TestFPrintFormat("%-8u", 123456, "%-8u", 123456); in TestFprintfFormat()
1211 TestFPrintFormat("%08u", 123456, "%08u", 123456); in TestFprintfFormat()
1212 TestFPrintFormat("%8u", -123456, "%8u", -123456); in TestFprintfFormat()
1213 TestFPrintFormat("%-8u", -123456, "%-8u", -123456); in TestFprintfFormat()
1214 TestFPrintFormat("%.5u", 123456, "%.5u", 123456); in TestFprintfFormat()
1215 TestFPrintFormat("%.6u", 123456, "%.6u", 123456); in TestFprintfFormat()
1216 TestFPrintFormat("%.7u", 123456, "%.7u", 123456); in TestFprintfFormat()
1218 TestFPrintFormat("%8d", 123456, "%8d", 123456); in TestFprintfFormat()
1219 TestFPrintFormat("%-8d", 123456, "%-8d", 123456); in TestFprintfFormat()
1220 TestFPrintFormat("%08d", 123456, "%08d", 123456); in TestFprintfFormat()
1221 TestFPrintFormat("% d", 123456, "% d", 123456); in TestFprintfFormat()
1222 TestFPrintFormat("% d", -123456, "% d", -123456); in TestFprintfFormat()
1224 TestFPrintFormat("%8i", 123456, "%8i", 123456); in TestFprintfFormat()
1225 TestFPrintFormat("%-8i", 123456, "%-8i", 123456); in TestFprintfFormat()
1226 TestFPrintFormat("%08i", 123456, "%08i", 123456); in TestFprintfFormat()
1230 TestFPrintFormat("%-#12x", 123, "%-#12x", 123); in TestFprintfFormat()
1231 TestFPrintFormat("%-#12x", -123, "%-#12x", -123); in TestFprintfFormat()
1232 TestFPrintFormat("%#12x", 123, "%#12x", 123); in TestFprintfFormat()
1233 TestFPrintFormat("%#12x", -123, "%#12x", -123); in TestFprintfFormat()
1235 TestFPrintFormat("%-+12d", 123, "%-+12d", 123); in TestFprintfFormat()
1236 TestFPrintFormat("%-+12d", -123, "%-+12d", -123); in TestFprintfFormat()
1237 TestFPrintFormat("%- 12d", 123, "%- 12d", 123); in TestFprintfFormat()
1238 TestFPrintFormat("%- 12d", -123, "%- 12d", -123); in TestFprintfFormat()
1239 TestFPrintFormat("%+12d", 123, "%+12d", 123); in TestFprintfFormat()
1240 TestFPrintFormat("%+12d", -123, "%+12d", -123); in TestFprintfFormat()
1241 TestFPrintFormat("% 12d", 123, "% 12d", 123); in TestFprintfFormat()
1242 TestFPrintFormat("% 12d", -123, "% 12d", -123); in TestFprintfFormat()
1243 TestFPrintFormat("%12d", 123, "%12d", 123); in TestFprintfFormat()
1244 TestFPrintFormat("%12d", -123, "%12d", -123); in TestFprintfFormat()
1245 TestFPrintFormat("%.12d", 123, "%.12d", 123); in TestFprintfFormat()
1246 TestFPrintFormat("%.12d", -123, "%.12d", -123); in TestFprintfFormat()
1248 TestFPrintFormat("%-+12.1f", 1.234, "%-+12.1f", 1.234); in TestFprintfFormat()
1249 TestFPrintFormat("%-+12.1f", -1.234, "%-+12.1f", -1.234); in TestFprintfFormat()
1250 TestFPrintFormat("%- 12.10f", 1.234, "%- 12.10f", 1.234); in TestFprintfFormat()
1251 TestFPrintFormat("%- 12.1f", -1.234, "%- 12.1f", -1.234); in TestFprintfFormat()
1252 TestFPrintFormat("%+12.1f", 1.234, "%+12.1f", 1.234); in TestFprintfFormat()
1253 TestFPrintFormat("%+12.1f", -1.234, "%+12.1f", -1.234); in TestFprintfFormat()
1254 TestFPrintFormat("% 12.1f", 1.234, "% 12.1f", 1.234); in TestFprintfFormat()
1255 TestFPrintFormat("% 12.1f", -1.234, "% 12.1f", -1.234); in TestFprintfFormat()
1256 TestFPrintFormat("%12.1f", 1.234, "%12.1f", 1.234); in TestFprintfFormat()
1257 TestFPrintFormat("%12.1f", -1.234, "%12.1f", -1.234); in TestFprintfFormat()
1258 TestFPrintFormat("%.2f", 1.234, "%.2f", 1.234); in TestFprintfFormat()
1259 TestFPrintFormat("%.2f", -1.234, "%.2f", -1.234); in TestFprintfFormat()
1260 TestFPrintFormat("%3f", 1.234, "%3f", 1.234); in TestFprintfFormat()
1261 TestFPrintFormat("%3f", -1.234, "%3f", -1.234); in TestFprintfFormat()
1287 #undef TestFPrintFormat