func strings.Repeat

12 uses

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

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

	go/doc/comment
		markdown.go#L25: 		headingPrefix: strings.Repeat("#", p.headingLevel()) + " ",

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

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

	golang.org/x/tools/internal/gcimporter
		iexport.go#L614: 	fmt.Printf(strings.Repeat("..", p.indent)+format+"\n", args...)
		iimport.go#L410: 	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#L400: 		return ":" + strings.Repeat(" ", 1+padding) // use non-breaking spaces (U+00a0)
		stringer.go#L402: 		return ":" + strings.Repeat(" ", 1+padding) // use regular spaces (U+0020)