Home | History | Annotate | Download | only in fmt

Lines Matching full:abcd

311 	{"%x", 0x1234abcd, "1234abcd"},
314 {"%X", 0x1234abcd, "1234ABCD"},
461 {"%08x", []byte{0xab, 0xcd}, "0000abcd"},
465 {"%8x", []byte{0xab, 0xcd}, " abcd"},
473 {"%08x", "\xab\xcd", "0000abcd"},
477 {"%8x", "\xab\xcd", " abcd"},
702 {"%s", byteStringerSlice, "abcd"},
703 {"%q", byteStringerSlice, "\"abcd\""},
709 {"%s", byteFormatterSlice, "abcd"},
710 {"%q", byteFormatterSlice, "\"abcd\""},