Lines Matching refs:formats
49 // For the formats %+v %#v, we set the plusV/sharpV flags
51 // different, flagless formats set at the top level.
148 // fmt_boolean formats a boolean.
319 // fmt_s formats a string.
325 // fmt_sbx formats a string or byte slice as a hexadecimal encoding of its bytes.
352 // fmt_sx formats a string as a hexadecimal encoding of its bytes.
360 // fmt_bx formats a byte slice as a hexadecimal encoding of its bytes.
368 // fmt_q formats a string as a double-quoted, escaped Go string constant.
384 // fmt_qc formats the integer as a single-quoted, escaped Go character constant.
405 // formatFloat formats a float64; it is an efficient equivalent to f.pad(strconv.FormatFloat()...).
451 // fmt_e64 formats a float64 in the form -1.23e+12.
454 // fmt_E64 formats a float64 in the form -1.23E+12.
457 // fmt_f64 formats a float64 in the form -1.23.
460 // fmt_g64 formats a float64 in the 'f' or 'e' form according to size.
463 // fmt_G64 formats a float64 in the 'f' or 'E' form according to size.
466 // fmt_fb64 formats a float64 in the form -123p3 (exponent is power of 2).
473 // fmt_e32 formats a float32 in the form -1.23e+12.
476 // fmt_E32 formats a float32 in the form -1.23E+12.
479 // fmt_f32 formats a float32 in the form -1.23.
482 // fmt_g32 formats a float32 in the 'f' or 'e' form according to size.
485 // fmt_G32 formats a float32 in the 'f' or 'E' form according to size.
488 // fmt_fb32 formats a float32 in the form -123p3 (exponent is power of 2).
491 // fmt_c64 formats a complex64 according to the verb.
496 // fmt_c128 formats a complex128 according to the verb.
501 // fmt_complex formats a complex number as (r+ji).