Home | History | Annotate | Download | only in big

Lines Matching refs:Format

153 		format byte
306 got := f.Text(test.format, test.prec)
312 if test.format == 'b' && test.x == 0 {
313 continue // 'b' format in strconv.Float requires knowledge of bias for 0.0
315 if test.format == 'p' {
316 continue // 'p' format not supported in strconv.Format
319 // verify that Float format matches strconv format
320 want := strconv.FormatFloat(test.x, test.format, test.prec, 64)
340 format byte
437 // unsupported format
447 got := f.Text(test.format, test.digits)
453 // ('p' format is not supported by strconv.FormatFloat,
456 if test.prec == 53 && test.format != 'p' && f.Sign() != 0 {
462 got := strconv.FormatFloat(f64, test.format, test.digits, 64)
472 format string
600 if got := fmt.Sprintf(test.format, value); got != test.want {
673 format string
700 _, err := fmt.Fscanf(&buf, test.format, x)