HomeSort by relevance Sort by last modified time
    Searched refs:regexp (Results 201 - 225 of 680) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/gen/
main.go 19 "regexp"
330 match, err := regexp.Match(pattern, src)
332 log.Fatalf("bad opcode regexp %s: %v", pattern, err)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/
main.go 19 "regexp"
330 match, err := regexp.Match(pattern, src)
332 log.Fatalf("bad opcode regexp %s: %v", pattern, err)
  /external/autotest/client/cros/multimedia/
display_facade_native.py 369 regexp = re.compile(
372 match = regexp.findall(graphics_utils.call_xrandr())
  /external/autotest/server/hosts/
cros_label.py 106 regexp = r'^.*\|\s*(\S+_v\d+\.\d+\.\d+-[0-9a-f]+)\s*$'
110 res = re.search(regexp, ecinfo.stdout)
  /external/autotest/site_utils/suite_scheduler/
manifest_versions.py 239 Given a regexp |matcher| and a list of paths to manifest files,
247 @param matcher: a compiled regexp that can be used to parse info
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/
Yaml.java 578 * given regexp, the corresponding tag is assigned to the scalar.
582 * @param regexp
588 public void addImplicitResolver(Tag tag, Pattern regexp, String first) {
589 resolver.addImplicitResolver(tag, regexp, first);
  /kernel/tests/net/test/
net_test.py 394 regexp = re.compile(r" *(\d+): " # bucket
413 _, _, uid, _, _, refcnt, _, extra) = regexp.match(line).groups()
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
compile.go 12 "regexp"
277 var re *regexp.Regexp
279 r, ok := regexp.Compile(underphase[1:])
281 return fmt.Sprintf("Error %s in regexp for phase %s, flag %s", ok.Error(), phase, flag)
  /prebuilts/go/darwin-x86/src/cmd/go/
generate.go 16 "regexp"
23 UsageLine: "generate [-run regexp] [-n] [-v] [-x] [build flags] [file.go... | packages]",
130 generateRunRE *regexp.Regexp // compiled expression for -run
143 generateRunRE, err = regexp.Compile(generateRunFlag)
  /prebuilts/go/darwin-x86/src/cmd/pprof/internal/report/
source.go 25 // functions with samples that match the regexp rpt.options.symbol.
35 // Identify all the functions that match the regexp provided.
101 // functions with samples that match the regexp rpt.options.symbol.
109 // If the regexp source can be parsed as an address, also match
  /prebuilts/go/darwin-x86/src/html/template/
transition.go 263 // Entire input is non string, comment, regexp tokens.
286 err: errorf(ErrSlashAmbig, nil, 0, "'/' could start a division or regexp: %.32q", s[i:]),
295 // tJSDelimited is the context transition function for the JS string and regexp
340 err: errorf(ErrPartialCharset, nil, 0, "unfinished JS regexp charset: %q", s),
  /prebuilts/go/darwin-x86/src/regexp/
exec.go 5 package regexp package
9 "regexp/syntax"
30 // See http://swtch.com/~rsc/regexp/regexp2.html
38 re *Regexp // corresponding Regexp
408 // doMatch reports whether either r, b or s match the regexp.
409 func (re *Regexp) doMatch(r io.RuneReader, b []byte, s string) bool {
417 func (re *Regexp) doExecute(r io.RuneReader, b []byte, s string, pos int, ncap int, dstCap []int) []int {
  /prebuilts/go/darwin-x86/src/runtime/
crash_test.go 16 "regexp"
297 matches := regexp.MustCompile(`goroutine [0-9]+ \[`).FindAllStringSubmatch(output, -1)
423 re := regexp.MustCompile(`(?m)^` + regexp.QuoteMeta(fn) + `\(.*\n`)
  /prebuilts/go/darwin-x86/src/testing/
example.go 39 fmt.Fprintf(os.Stderr, "testing: invalid regexp for -test.run: %s\n", err)
match.go 38 fmt.Fprintf(os.Stderr, "testing: invalid regexp for element %d of %s (%q): %s\n", i, name, s, err)
sub_test.go 10 "regexp"
334 ctx := newTestContext(tc.maxPar, newMatcher(regexp.MatchString, "", ""))
360 if ok, err := regexp.MatchString(re, got); !ok || err != nil {
501 if ok, err := regexp.MatchString(re, got); !ok || err != nil {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
compile.go 12 "regexp"
277 var re *regexp.Regexp
279 r, ok := regexp.Compile(underphase[1:])
281 return fmt.Sprintf("Error %s in regexp for phase %s, flag %s", ok.Error(), phase, flag)
  /prebuilts/go/linux-x86/src/cmd/go/
generate.go 16 "regexp"
23 UsageLine: "generate [-run regexp] [-n] [-v] [-x] [build flags] [file.go... | packages]",
130 generateRunRE *regexp.Regexp // compiled expression for -run
143 generateRunRE, err = regexp.Compile(generateRunFlag)
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/report/
source.go 25 // functions with samples that match the regexp rpt.options.symbol.
35 // Identify all the functions that match the regexp provided.
101 // functions with samples that match the regexp rpt.options.symbol.
109 // If the regexp source can be parsed as an address, also match
  /prebuilts/go/linux-x86/src/html/template/
transition.go 263 // Entire input is non string, comment, regexp tokens.
286 err: errorf(ErrSlashAmbig, nil, 0, "'/' could start a division or regexp: %.32q", s[i:]),
295 // tJSDelimited is the context transition function for the JS string and regexp
340 err: errorf(ErrPartialCharset, nil, 0, "unfinished JS regexp charset: %q", s),
  /prebuilts/go/linux-x86/src/regexp/
exec.go 5 package regexp package
9 "regexp/syntax"
30 // See http://swtch.com/~rsc/regexp/regexp2.html
38 re *Regexp // corresponding Regexp
408 // doMatch reports whether either r, b or s match the regexp.
409 func (re *Regexp) doMatch(r io.RuneReader, b []byte, s string) bool {
417 func (re *Regexp) doExecute(r io.RuneReader, b []byte, s string, pos int, ncap int, dstCap []int) []int {
  /prebuilts/go/linux-x86/src/runtime/
crash_test.go 16 "regexp"
297 matches := regexp.MustCompile(`goroutine [0-9]+ \[`).FindAllStringSubmatch(output, -1)
423 re := regexp.MustCompile(`(?m)^` + regexp.QuoteMeta(fn) + `\(.*\n`)
  /prebuilts/go/linux-x86/src/testing/
example.go 39 fmt.Fprintf(os.Stderr, "testing: invalid regexp for -test.run: %s\n", err)
match.go 38 fmt.Fprintf(os.Stderr, "testing: invalid regexp for element %d of %s (%q): %s\n", i, name, s, err)
sub_test.go 10 "regexp"
334 ctx := newTestContext(tc.maxPar, newMatcher(regexp.MatchString, "", ""))
360 if ok, err := regexp.MatchString(re, got); !ok || err != nil {
501 if ok, err := regexp.MatchString(re, got); !ok || err != nil {

Completed in 1171 milliseconds

1 2 3 4 5 6 7 891011>>