regexp.Regexp.MatchString (method)

8 uses

	regexp (current package)
		regexp.go#L506: func (re *Regexp) MatchString(s string) bool {
		regexp.go#L535: 	return re.MatchString(s), nil

	go.uber.org/mock/gomock
		matchers.go#L183: 		return m.regex.MatchString(t)

	golang.org/x/tools/internal/gocommand
		invoke.go#L101: 	if friendlyErr != nil && modConcurrencyError.MatchString(friendlyErr.Error()) {

	google.golang.org/grpc/internal/grpcutil
		regex.go#L26: 		return re.MatchString(text)

	internal/lazyregexp
		lazyre.go#L59: 	return r.re().MatchString(s)

	internal/profile
		prune.go#L30: 				if dropRx.MatchString(funcName) {
		prune.go#L31: 					if keepRx == nil || !keepRx.MatchString(funcName) {