HomeSort by relevance Sort by last modified time
    Searched refs:regexp (Results 101 - 125 of 752) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/
filter.go 19 import "regexp"
23 // Returns true is the corresponding regexp matched at least one sample.
24 func (p *Profile) FilterSamplesByName(focus, ignore, hide, show *regexp.Regexp) (fm, im, hm, hnm bool) {
79 func (p *Profile) FilterTagsByName(show, hide *regexp.Regexp) (sm, hm bool) {
110 func (loc *Location) matchesName(re *regexp.Regexp) bool {
126 func (loc *Location) unmatchedLines(re *regexp.Regexp) []Line
    [all...]
  /build/blueprint/gotestmain/
gotestmain.go 112 "regexp"
125 var matchRe *regexp.Regexp
132 matchRe, err = regexp.Compile(matchPat)
  /prebuilts/go/darwin-x86/src/sort/
genzfunc.go 25 "regexp"
71 src := regexp.MustCompile(`\n{2,}`).ReplaceAll(out.Bytes(), []byte("\n"))
76 src = regexp.MustCompile(`(?m)^func (\w+)`).ReplaceAll(src, []byte("\n// Auto-generated variant of sort.go:$1\nfunc ${1}_func"))
  /prebuilts/go/darwin-x86/src/testing/internal/testdeps/
deps.go 17 "regexp"
28 var matchRe *regexp.Regexp
33 matchRe, err = regexp.Compile(matchPat)
  /prebuilts/go/linux-x86/src/sort/
genzfunc.go 25 "regexp"
71 src := regexp.MustCompile(`\n{2,}`).ReplaceAll(out.Bytes(), []byte("\n"))
76 src = regexp.MustCompile(`(?m)^func (\w+)`).ReplaceAll(src, []byte("\n// Auto-generated variant of sort.go:$1\nfunc ${1}_func"))
  /prebuilts/go/linux-x86/src/testing/internal/testdeps/
deps.go 17 "regexp"
28 var matchRe *regexp.Regexp
33 matchRe, err = regexp.Compile(matchPat)
  /prebuilts/go/darwin-x86/src/regexp/
regexp.go 5 // Package regexp implements regular expression search.
12 // go doc regexp/syntax
14 // The regexp implementation provided by this package is
19 // http://swtch.com/~rsc/regexp/regexp1.html
24 // There are 16 methods of Regexp that match a regular expression and identify
65 package regexp package
70 "regexp/syntax"
78 // Regexp is the representation of a compiled regular expression.
79 // A Regexp is safe for concurrent use by multiple goroutines,
81 type Regexp struct
    [all...]
  /prebuilts/go/linux-x86/src/regexp/
regexp.go 5 // Package regexp implements regular expression search.
12 // go doc regexp/syntax
14 // The regexp implementation provided by this package is
19 // http://swtch.com/~rsc/regexp/regexp1.html
24 // There are 16 methods of Regexp that match a regular expression and identify
65 package regexp package
70 "regexp/syntax"
78 // Regexp is the representation of a compiled regular expression.
79 // A Regexp is safe for concurrent use by multiple goroutines,
81 type Regexp struct
    [all...]
  /prebuilts/go/darwin-x86/doc/progs/
run.go 16 "regexp"
78 // and checks that the output matches the regexp want.
105 match, err := regexp.Match(want, out)
107 return fmt.Errorf("failed to parse regexp %q: %v", want, err)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
inl_test.go 12 "regexp"
133 "regexp": {
183 canInline := regexp.MustCompile(`: can inline ([^ ]*)`)
184 cannotInline := regexp.MustCompile(`: cannot inline ([^ ]*): (.*)`)
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/x86/
obj6_test.go 12 "regexp"
77 var spaces_re *regexp.Regexp = regexp.MustCompile("\\s+")
118 marker := regexp.MustCompile("MOVQ \\$([0-9]+), AX")
  /prebuilts/go/darwin-x86/src/crypto/x509/
root_darwin_arm_gen.go 32 "regexp"
144 for i, rowmatch := range regexp.MustCompile("(?s)<tr>(.*?)</tr>").FindAllStringSubmatch(text, -1) {
148 for i, match := range regexp.MustCompile("(?s)<th>(.*?)</th>").FindAllStringSubmatch(row, -1) {
154 values := regexp.MustCompile("(?s)<td>(.*?)</td>").FindAllStringSubmatch(row, -1)
  /prebuilts/go/darwin-x86/src/log/
log_test.go 13 "regexp"
31 pattern string // regexp that log output must match; we add ^ and expected_text$ always
64 matched, err4 := regexp.MatchString(pattern, line)
126 matched, err := regexp.Match(pattern, b.Bytes())
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue20298.go 30 "regexp"
  /prebuilts/go/linux-x86/doc/progs/
run.go 16 "regexp"
78 // and checks that the output matches the regexp want.
105 match, err := regexp.Match(want, out)
107 return fmt.Errorf("failed to parse regexp %q: %v", want, err)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
inl_test.go 12 "regexp"
133 "regexp": {
183 canInline := regexp.MustCompile(`: can inline ([^ ]*)`)
184 cannotInline := regexp.MustCompile(`: cannot inline ([^ ]*): (.*)`)
  /prebuilts/go/linux-x86/src/cmd/internal/obj/x86/
obj6_test.go 12 "regexp"
77 var spaces_re *regexp.Regexp = regexp.MustCompile("\\s+")
118 marker := regexp.MustCompile("MOVQ \\$([0-9]+), AX")
  /prebuilts/go/linux-x86/src/crypto/x509/
root_darwin_arm_gen.go 32 "regexp"
144 for i, rowmatch := range regexp.MustCompile("(?s)<tr>(.*?)</tr>").FindAllStringSubmatch(text, -1) {
148 for i, match := range regexp.MustCompile("(?s)<th>(.*?)</th>").FindAllStringSubmatch(row, -1) {
154 values := regexp.MustCompile("(?s)<td>(.*?)</td>").FindAllStringSubmatch(row, -1)
  /prebuilts/go/linux-x86/src/log/
log_test.go 13 "regexp"
31 pattern string // regexp that log output must match; we add ^ and expected_text$ always
64 matched, err4 := regexp.MatchString(pattern, line)
126 matched, err := regexp.Match(pattern, b.Bytes())
  /prebuilts/go/linux-x86/test/fixedbugs/
issue20298.go 30 "regexp"
  /prebuilts/go/darwin-x86/src/runtime/
runtime-gdb_test.go 16 "regexp"
46 re := regexp.MustCompile(`([0-9]+)\.([0-9]+)`)
194 partRe := regexp.MustCompile(`(?ms)^BEGIN ([^\n]*)\n(.*?)\nEND`)
200 infoGoroutinesRe := regexp.MustCompile(`\*\s+\d+\s+running\s+`)
205 printMapvarRe1 := regexp.MustCompile(`\Q = map[string]string = {["abc"] = "def", ["ghi"] = "jkl"}\E$`)
206 printMapvarRe2 := regexp.MustCompile(`\Q = map[string]string = {["ghi"] = "jkl", ["abc"] = "def"}\E$`)
212 strVarRe := regexp.MustCompile(`\Q = "abc"\E$`)
221 infoLocalsRe := regexp.MustCompile(`.*\sslicevar.cap = `)
226 btGoroutine1Re := regexp.MustCompile(`(?m)^#0\s+(0x[0-9a-f]+\s+in\s+)?fmt\.Println.+at`)
231 btGoroutine2Re := regexp.MustCompile(`(?m)^#0\s+(0x[0-9a-f]+\s+in\s+)?runtime.+at`
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
runtime-gdb_test.go 16 "regexp"
46 re := regexp.MustCompile(`([0-9]+)\.([0-9]+)`)
194 partRe := regexp.MustCompile(`(?ms)^BEGIN ([^\n]*)\n(.*?)\nEND`)
200 infoGoroutinesRe := regexp.MustCompile(`\*\s+\d+\s+running\s+`)
205 printMapvarRe1 := regexp.MustCompile(`\Q = map[string]string = {["abc"] = "def", ["ghi"] = "jkl"}\E$`)
206 printMapvarRe2 := regexp.MustCompile(`\Q = map[string]string = {["ghi"] = "jkl", ["abc"] = "def"}\E$`)
212 strVarRe := regexp.MustCompile(`\Q = "abc"\E$`)
221 infoLocalsRe := regexp.MustCompile(`.*\sslicevar.cap = `)
226 btGoroutine1Re := regexp.MustCompile(`(?m)^#0\s+(0x[0-9a-f]+\s+in\s+)?fmt\.Println.+at`)
231 btGoroutine2Re := regexp.MustCompile(`(?m)^#0\s+(0x[0-9a-f]+\s+in\s+)?runtime.+at`
    [all...]
  /prebuilts/go/darwin-x86/doc/articles/wiki/
final-noclosure.go 13 "regexp"
87 var validPath = regexp.MustCompile("^/(edit|save|view)/([a-zA-Z0-9]+)$")
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
stringer.go 19 "regexp"
29 var Are = regexp.MustCompile(`^\tA([A-Z0-9]+)`)
  /prebuilts/go/darwin-x86/src/go/doc/
headscan.go 27 "regexp"
38 var html_h = regexp.MustCompile(`<h3 id="[^"]*">`)

Completed in 1262 milliseconds

1 2 3 45 6 7 8 91011>>