fmt.State.Flag (method)

16 uses

	fmt (current package)
		print.go#L47: 	Flag(c int) bool

	go.uber.org/multierr
		error.go#L285: 	if c == 'v' && f.Flag('+') {

	google.golang.org/protobuf/internal/descfmt
		stringer.go#L26: 	io.WriteString(s, formatListOpt(vs, true, r == 'v' && (s.Flag('+') || s.Flag('#'))))
		stringer.go#L120: 	io.WriteString(s, formatDescOpt(t, true, r == 'v' && (s.Flag('+') || s.Flag('#'))))

	math/big
		ftoa.go#L504: 		if s.Flag(' ') {
		ftoa.go#L508: 	case s.Flag('+'):
		ftoa.go#L510: 	case s.Flag(' '):
		ftoa.go#L520: 	case s.Flag('0') && !x.IsInf():
		ftoa.go#L525: 	case s.Flag('-'):
		intconv.go#L95: 	case s.Flag('+'): // supersedes ' ' when both specified
		intconv.go#L97: 	case s.Flag(' '):
		intconv.go#L103: 	if s.Flag('#') {
		intconv.go#L149: 		case s.Flag('-'):
		intconv.go#L152: 		case s.Flag('0') && !precisionSet: