type regexp.Regexp

69 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#L82: type Regexp struct {
		regexp.go#L105: func (re *Regexp) String() string {
		regexp.go#L117: func (re *Regexp) Copy() *Regexp {
		regexp.go#L132: func Compile(expr string) (*Regexp, error) {
		regexp.go#L155: func CompilePOSIX(expr string) (*Regexp, error) {
		regexp.go#L165: func (re *Regexp) Longest() {
		regexp.go#L169: func compile(expr string, mode syntax.Flags, longest bool) (*Regexp, error) {
		regexp.go#L186: 	regexp := &Regexp{
		regexp.go#L234: func (re *Regexp) get() *machine {
		regexp.go#L262: func (re *Regexp) put(m *machine) {
		regexp.go#L308: func MustCompile(str string) *Regexp {
		regexp.go#L319: func MustCompilePOSIX(str string) *Regexp {
		regexp.go#L335: func (re *Regexp) NumSubexp() int {
		regexp.go#L344: func (re *Regexp) SubexpNames() []string {
		regexp.go#L355: func (re *Regexp) SubexpIndex(name string) int {
		regexp.go#L373: 	hasPrefix(re *Regexp) bool
		regexp.go#L374: 	index(re *Regexp, pos int) int
		regexp.go#L398: func (i *inputString) hasPrefix(re *Regexp) bool {
		regexp.go#L402: func (i *inputString) index(re *Regexp, pos int) int {
		regexp.go#L445: func (i *inputBytes) hasPrefix(re *Regexp) bool {
		regexp.go#L449: func (i *inputBytes) index(re *Regexp, pos int) int {
		regexp.go#L497: func (i *inputReader) hasPrefix(re *Regexp) bool {
		regexp.go#L501: func (i *inputReader) index(re *Regexp, pos int) int {
		regexp.go#L512: func (re *Regexp) LiteralPrefix() (prefix string, complete bool) {
		regexp.go#L518: func (re *Regexp) MatchReader(r io.RuneReader) bool {
		regexp.go#L524: func (re *Regexp) MatchString(s string) bool {
		regexp.go#L530: func (re *Regexp) Match(b []byte) bool {
		regexp.go#L570: func (re *Regexp) ReplaceAllString(src, repl string) string {
		regexp.go#L584: func (re *Regexp) ReplaceAllLiteralString(src, repl string) string {
		regexp.go#L594: func (re *Regexp) ReplaceAllStringFunc(src string, repl func(string) string) string {
		regexp.go#L601: func (re *Regexp) replaceAll(bsrc []byte, src string, nmatch int, repl func(dst []byte, m []int) []byte) []byte {
		regexp.go#L669: func (re *Regexp) ReplaceAll(src, repl []byte) []byte {
		regexp.go#L687: func (re *Regexp) ReplaceAllLiteral(src, repl []byte) []byte {
		regexp.go#L697: func (re *Regexp) ReplaceAllFunc(src []byte, repl func([]byte) []byte) []byte {
		regexp.go#L752: func (re *Regexp) pad(a []int) []int {
		regexp.go#L767: func (re *Regexp) allMatches(s string, b []byte, n int, deliver func([]int)) {
		regexp.go#L815: func (re *Regexp) Find(b []byte) []byte {
		regexp.go#L828: func (re *Regexp) FindIndex(b []byte) (loc []int) {
		regexp.go#L841: func (re *Regexp) FindString(s string) string {
		regexp.go#L854: func (re *Regexp) FindStringIndex(s string) (loc []int) {
		regexp.go#L867: func (re *Regexp) FindReaderIndex(r io.RuneReader) (loc []int) {
		regexp.go#L880: func (re *Regexp) FindSubmatch(b []byte) [][]byte {
		regexp.go#L912: func (re *Regexp) Expand(dst []byte, template []byte, src []byte, match []int) []byte {
		regexp.go#L919: func (re *Regexp) ExpandString(dst []byte, template string, src string, match []int) []byte {
		regexp.go#L923: func (re *Regexp) expand(dst []byte, template string, bsrc []byte, src string, match []int) []byte {
		regexp.go#L1028: func (re *Regexp) FindSubmatchIndex(b []byte) []int {
		regexp.go#L1037: func (re *Regexp) FindStringSubmatch(s string) []string {
		regexp.go#L1057: func (re *Regexp) FindStringSubmatchIndex(s string) []int {
		regexp.go#L1066: func (re *Regexp) FindReaderSubmatchIndex(r io.RuneReader) []int {
		regexp.go#L1076: func (re *Regexp) FindAll(b []byte, n int) [][]byte {
		regexp.go#L1094: func (re *Regexp) FindAllIndex(b []byte, n int) [][]int {
		regexp.go#L1112: func (re *Regexp) FindAllString(s string, n int) []string {
		regexp.go#L1130: func (re *Regexp) FindAllStringIndex(s string, n int) [][]int {
		regexp.go#L1148: func (re *Regexp) FindAllSubmatch(b []byte, n int) [][][]byte {
		regexp.go#L1172: func (re *Regexp) FindAllSubmatchIndex(b []byte, n int) [][]int {
		regexp.go#L1190: func (re *Regexp) FindAllStringSubmatch(s string, n int) [][]string {
		regexp.go#L1215: func (re *Regexp) FindAllStringSubmatchIndex(s string, n int) [][]int {
		regexp.go#L1244: func (re *Regexp) Split(s string, n int) []string {

	src.elv.sh/pkg/edit/filter
		filter.go#L52: 	pattern *regexp.Regexp

	src.elv.sh/pkg/eval/mods/re
		re.go#L148: func makePattern(p string, posix, longest bool) (*regexp.Regexp, error) {
		re.go#L159: func compile(pattern string, posix bool) (*regexp.Regexp, error) {