type regexp.Regexp

68 uses

	regexp (current package)
		backtrack.go#L129: func (b *bitState) push(re *Regexp, pc uint32, pos int, arg bool) {
		backtrack.go#L138: func (re *Regexp) tryBacktrack(b *bitState, i input, pc uint32, pos int) bool {
		backtrack.go#L305: 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#L80: type Regexp struct {
		regexp.go#L103: func (re *Regexp) String() string {
		regexp.go#L115: func (re *Regexp) Copy() *Regexp {
		regexp.go#L130: func Compile(expr string) (*Regexp, error) {
		regexp.go#L153: func CompilePOSIX(expr string) (*Regexp, error) {
		regexp.go#L163: func (re *Regexp) Longest() {
		regexp.go#L167: func compile(expr string, mode syntax.Flags, longest bool) (*Regexp, error) {
		regexp.go#L184: 	regexp := &Regexp{
		regexp.go#L232: func (re *Regexp) get() *machine {
		regexp.go#L260: func (re *Regexp) put(m *machine) {
		regexp.go#L310: func MustCompile(str string) *Regexp {
		regexp.go#L321: func MustCompilePOSIX(str string) *Regexp {
		regexp.go#L337: func (re *Regexp) NumSubexp() int {
		regexp.go#L346: func (re *Regexp) SubexpNames() []string {
		regexp.go#L357: func (re *Regexp) SubexpIndex(name string) int {
		regexp.go#L375: 	hasPrefix(re *Regexp) bool
		regexp.go#L376: 	index(re *Regexp, pos int) int
		regexp.go#L400: func (i *inputString) hasPrefix(re *Regexp) bool {
		regexp.go#L404: func (i *inputString) index(re *Regexp, pos int) int {
		regexp.go#L447: func (i *inputBytes) hasPrefix(re *Regexp) bool {
		regexp.go#L451: func (i *inputBytes) index(re *Regexp, pos int) int {
		regexp.go#L499: func (i *inputReader) hasPrefix(re *Regexp) bool {
		regexp.go#L503: func (i *inputReader) index(re *Regexp, pos int) int {
		regexp.go#L514: func (re *Regexp) LiteralPrefix() (prefix string, complete bool) {
		regexp.go#L520: func (re *Regexp) MatchReader(r io.RuneReader) bool {
		regexp.go#L526: func (re *Regexp) MatchString(s string) bool {
		regexp.go#L532: func (re *Regexp) Match(b []byte) bool {
		regexp.go#L572: func (re *Regexp) ReplaceAllString(src, repl string) string {
		regexp.go#L586: func (re *Regexp) ReplaceAllLiteralString(src, repl string) string {
		regexp.go#L596: func (re *Regexp) ReplaceAllStringFunc(src string, repl func(string) string) string {
		regexp.go#L603: func (re *Regexp) replaceAll(bsrc []byte, src string, nmatch int, repl func(dst []byte, m []int) []byte) []byte {
		regexp.go#L671: func (re *Regexp) ReplaceAll(src, repl []byte) []byte {
		regexp.go#L689: func (re *Regexp) ReplaceAllLiteral(src, repl []byte) []byte {
		regexp.go#L699: func (re *Regexp) ReplaceAllFunc(src []byte, repl func([]byte) []byte) []byte {
		regexp.go#L754: func (re *Regexp) pad(a []int) []int {
		regexp.go#L769: func (re *Regexp) allMatches(s string, b []byte, n int, deliver func([]int)) {
		regexp.go#L818: func (re *Regexp) Find(b []byte) []byte {
		regexp.go#L831: func (re *Regexp) FindIndex(b []byte) (loc []int) {
		regexp.go#L844: func (re *Regexp) FindString(s string) string {
		regexp.go#L857: func (re *Regexp) FindStringIndex(s string) (loc []int) {
		regexp.go#L870: func (re *Regexp) FindReaderIndex(r io.RuneReader) (loc []int) {
		regexp.go#L883: func (re *Regexp) FindSubmatch(b []byte) [][]byte {
		regexp.go#L915: func (re *Regexp) Expand(dst []byte, template []byte, src []byte, match []int) []byte {
		regexp.go#L922: func (re *Regexp) ExpandString(dst []byte, template string, src string, match []int) []byte {
		regexp.go#L926: func (re *Regexp) expand(dst []byte, template string, bsrc []byte, src string, match []int) []byte {
		regexp.go#L1029: func (re *Regexp) FindSubmatchIndex(b []byte) []int {
		regexp.go#L1038: func (re *Regexp) FindStringSubmatch(s string) []string {
		regexp.go#L1058: func (re *Regexp) FindStringSubmatchIndex(s string) []int {
		regexp.go#L1067: func (re *Regexp) FindReaderSubmatchIndex(r io.RuneReader) []int {
		regexp.go#L1077: func (re *Regexp) FindAll(b []byte, n int) [][]byte {
		regexp.go#L1095: func (re *Regexp) FindAllIndex(b []byte, n int) [][]int {
		regexp.go#L1113: func (re *Regexp) FindAllString(s string, n int) []string {
		regexp.go#L1131: func (re *Regexp) FindAllStringIndex(s string, n int) [][]int {
		regexp.go#L1149: func (re *Regexp) FindAllSubmatch(b []byte, n int) [][][]byte {
		regexp.go#L1173: func (re *Regexp) FindAllSubmatchIndex(b []byte, n int) [][]int {
		regexp.go#L1191: func (re *Regexp) FindAllStringSubmatch(s string, n int) [][]string {
		regexp.go#L1216: func (re *Regexp) FindAllStringSubmatchIndex(s string, n int) [][]int {
		regexp.go#L1246: func (re *Regexp) Split(s string, n int) []string {
		regexp.go#L1286: func (re *Regexp) MarshalText() ([]byte, error) {
		regexp.go#L1292: func (re *Regexp) UnmarshalText(text []byte) error {