type regexp.Regexp

83 uses

	regexp (current package)
		backtrack.go#L131: func (b *bitState) push(re *Regexp, pc uint32, pos int, arg bool) {
		backtrack.go#L140: func (re *Regexp) tryBacktrack(b *bitState, i input, pc uint32, pos int) bool {
		backtrack.go#L307: func (re *Regexp) backtrack(ib []byte, is string, pos int, ncap int, dstCap []int) []int {
		exec.go#L39: 	re       *Regexp      // corresponding Regexp
		exec.go#L397: func (re *Regexp) doOnePass(ir io.RuneReader, ib []byte, is string, pos, ncap int, dstCap []int) []int {
		exec.go#L513: func (re *Regexp) doMatch(r io.RuneReader, b []byte, s string) bool {
		exec.go#L521: func (re *Regexp) doExecute(r io.RuneReader, b []byte, s string, pos int, ncap int, dstCap []int) []int {
		regexp.go#L84: type Regexp struct {
		regexp.go#L107: func (re *Regexp) String() string {
		regexp.go#L119: func (re *Regexp) Copy() *Regexp {
		regexp.go#L134: func Compile(expr string) (*Regexp, error) {
		regexp.go#L157: func CompilePOSIX(expr string) (*Regexp, error) {
		regexp.go#L167: func (re *Regexp) Longest() {
		regexp.go#L171: func compile(expr string, mode syntax.Flags, longest bool) (*Regexp, error) {
		regexp.go#L188: 	regexp := &Regexp{
		regexp.go#L236: func (re *Regexp) get() *machine {
		regexp.go#L264: func (re *Regexp) put(m *machine) {
		regexp.go#L314: func MustCompile(str string) *Regexp {
		regexp.go#L325: func MustCompilePOSIX(str string) *Regexp {
		regexp.go#L341: func (re *Regexp) NumSubexp() int {
		regexp.go#L350: func (re *Regexp) SubexpNames() []string {
		regexp.go#L361: func (re *Regexp) SubexpIndex(name string) int {
		regexp.go#L379: 	hasPrefix(re *Regexp) bool
		regexp.go#L380: 	index(re *Regexp, pos int) int
		regexp.go#L404: func (i *inputString) hasPrefix(re *Regexp) bool {
		regexp.go#L408: func (i *inputString) index(re *Regexp, pos int) int {
		regexp.go#L451: func (i *inputBytes) hasPrefix(re *Regexp) bool {
		regexp.go#L455: func (i *inputBytes) index(re *Regexp, pos int) int {
		regexp.go#L503: func (i *inputReader) hasPrefix(re *Regexp) bool {
		regexp.go#L507: func (i *inputReader) index(re *Regexp, pos int) int {
		regexp.go#L518: func (re *Regexp) LiteralPrefix() (prefix string, complete bool) {
		regexp.go#L524: func (re *Regexp) MatchReader(r io.RuneReader) bool {
		regexp.go#L530: func (re *Regexp) MatchString(s string) bool {
		regexp.go#L536: func (re *Regexp) Match(b []byte) bool {
		regexp.go#L576: func (re *Regexp) ReplaceAllString(src, repl string) string {
		regexp.go#L590: func (re *Regexp) ReplaceAllLiteralString(src, repl string) string {
		regexp.go#L600: func (re *Regexp) ReplaceAllStringFunc(src string, repl func(string) string) string {
		regexp.go#L607: func (re *Regexp) replaceAll(bsrc []byte, src string, nmatch int, repl func(dst []byte, m []int) []byte) []byte {
		regexp.go#L675: func (re *Regexp) ReplaceAll(src, repl []byte) []byte {
		regexp.go#L693: func (re *Regexp) ReplaceAllLiteral(src, repl []byte) []byte {
		regexp.go#L703: func (re *Regexp) ReplaceAllFunc(src []byte, repl func([]byte) []byte) []byte {
		regexp.go#L758: func (re *Regexp) pad(a []int) []int {
		regexp.go#L773: func (re *Regexp) allMatches(s string, b []byte, n int, deliver func([]int)) {
		regexp.go#L821: func (re *Regexp) Find(b []byte) []byte {
		regexp.go#L834: func (re *Regexp) FindIndex(b []byte) (loc []int) {
		regexp.go#L847: func (re *Regexp) FindString(s string) string {
		regexp.go#L860: func (re *Regexp) FindStringIndex(s string) (loc []int) {
		regexp.go#L873: func (re *Regexp) FindReaderIndex(r io.RuneReader) (loc []int) {
		regexp.go#L886: func (re *Regexp) FindSubmatch(b []byte) [][]byte {
		regexp.go#L918: func (re *Regexp) Expand(dst []byte, template []byte, src []byte, match []int) []byte {
		regexp.go#L925: func (re *Regexp) ExpandString(dst []byte, template string, src string, match []int) []byte {
		regexp.go#L929: func (re *Regexp) expand(dst []byte, template string, bsrc []byte, src string, match []int) []byte {
		regexp.go#L1032: func (re *Regexp) FindSubmatchIndex(b []byte) []int {
		regexp.go#L1041: func (re *Regexp) FindStringSubmatch(s string) []string {
		regexp.go#L1061: func (re *Regexp) FindStringSubmatchIndex(s string) []int {
		regexp.go#L1070: func (re *Regexp) FindReaderSubmatchIndex(r io.RuneReader) []int {
		regexp.go#L1080: func (re *Regexp) FindAll(b []byte, n int) [][]byte {
		regexp.go#L1098: func (re *Regexp) FindAllIndex(b []byte, n int) [][]int {
		regexp.go#L1116: func (re *Regexp) FindAllString(s string, n int) []string {
		regexp.go#L1134: func (re *Regexp) FindAllStringIndex(s string, n int) [][]int {
		regexp.go#L1152: func (re *Regexp) FindAllSubmatch(b []byte, n int) [][][]byte {
		regexp.go#L1176: func (re *Regexp) FindAllSubmatchIndex(b []byte, n int) [][]int {
		regexp.go#L1194: func (re *Regexp) FindAllStringSubmatch(s string, n int) [][]string {
		regexp.go#L1219: func (re *Regexp) FindAllStringSubmatchIndex(s string, n int) [][]int {
		regexp.go#L1248: func (re *Regexp) Split(s string, n int) []string {

	github.com/aws/aws-sdk-go-v2/internal/endpoints/v2
		endpoints.go#L119: 	RegionRegex       *regexp.Regexp

	github.com/aws/aws-sdk-go-v2/service/s3/internal/endpoints
		endpoints.go#L90: 	Aws      *regexp.Regexp
		endpoints.go#L91: 	AwsCn    *regexp.Regexp
		endpoints.go#L92: 	AwsIso   *regexp.Regexp
		endpoints.go#L93: 	AwsIsoB  *regexp.Regexp
		endpoints.go#L94: 	AwsUsGov *regexp.Regexp

	github.com/jinzhu/inflection
		inflections.go#L32: 	regexp  *regexp.Regexp

	google.golang.org/grpc/internal/grpcutil
		regex.go#L24: func FullMatchWithRegex(re *regexp.Regexp, text string) bool {

	gotest.tools/v3/assert/cmp
		compare.go#L76: 	match := func(re *regexp.Regexp) Result {
		compare.go#L84: 		case *regexp.Regexp:

	internal/lazyregexp
		lazyre.go#L21: 	rx   *regexp.Regexp
		lazyre.go#L24: func (r *Regexp) re() *regexp.Regexp {

	internal/profile
		filter.go#L14: func (p *Profile) FilterSamplesByName(focus, ignore, hide *regexp.Regexp) (fm, im, hm bool) {
		filter.go#L60: func (loc *Location) matchesName(re *regexp.Regexp) bool {
		filter.go#L76: func (loc *Location) unmatchedLines(re *regexp.Regexp) []Line {
		prune.go#L17: func (p *Profile) Prune(dropRx, keepRx *regexp.Regexp) {
		prune.go#L82: 	var keep, drop *regexp.Regexp