Home | History | Annotate | Download | only in fmt

Lines Matching defs:fmt

5 package fmt
39 // A fmt is the raw formatter used by Printf etc.
41 type fmt struct {
54 func (f *fmt) clearflags() {
58 func (f *fmt) init(buf *buffer) {
64 func (f *fmt) writePadding(n int) {
90 func (f *fmt) pad(b []byte) {
108 func (f *fmt) padString(s string) {
126 func (f *fmt) fmt_boolean(v bool) {
135 func (f *fmt) fmt_unicode(u uint64) {
194 func (f *fmt) fmt_integer(u uint64, base int, isSigned bool, digits string) {
266 panic("fmt: unknown base; can't happen")
312 func (f *fmt) truncate(s string) string {
326 func (f *fmt) fmt_s(s string) {
332 func (f *fmt) fmt_sbx(s string, b []byte, digits string) {
398 func (f *fmt) fmt_sx(s, digits string) {
403 func (f *fmt) fmt_bx(b []byte, digits string) {
410 func (f *fmt) fmt_q(s string) {
426 func (f *fmt) fmt_c(c uint64) {
438 func (f *fmt) fmt_qc(c uint64) {
453 func (f *fmt) fmt_float(v float64, size int, verb rune, prec int) {