func strings.Repeat

11 uses

	strings (current package)
		strings.go#L523: func Repeat(s string, count int) string {

	github.com/google/go-cmp/cmp
		path.go#L135: 				ssPre = append(ssPre, pPre+strings.Repeat("*", numIndirect))

	go/parser
		resolver.go#L74: 	fmt.Println(strings.Repeat(". ", r.depth) + r.sprintf(format, args...))

	go/types
		errors.go#L133: 		strings.Repeat(".  ", check.indent),
		scope.go#L216: 	indn := strings.Repeat(ind, n)
		unify.go#L89: 	fmt.Println(strings.Repeat(".  ", u.depth) + sprintf(nil, nil, true, format, args...))

	golang.org/x/tools/internal/gcimporter
		iexport.go#L354: 	fmt.Printf(strings.Repeat("..", p.indent)+format+"\n", args...)
		iimport.go#L322: 	fmt.Printf(strings.Repeat("..", p.indent)+format+"\n", args...)

	golang.org/x/tools/internal/typeparams
		normalize.go#L124: 	fmt.Fprintf(os.Stderr, strings.Repeat(".", depth)+format+"\n", args...)

	google.golang.org/protobuf/internal/descfmt
		stringer.go#L304: 		return ":" + strings.Repeat(" ", 1+padding) // use non-breaking spaces (U+00a0)
		stringer.go#L306: 		return ":" + strings.Repeat(" ", 1+padding) // use regular spaces (U+0020)