HomeSort by relevance Sort by last modified time
    Searched refs:Regexp (Results 1 - 25 of 27) sorted by null

1 2

  /external/syzkaller/pkg/report/
gvisor.go 8 "regexp"
12 ignores []*regexp.Regexp
15 func ctorGvisor(kernelSrc, kernelObj string, ignores []*regexp.Regexp) (Reporter, []string, error) {
80 regexp.MustCompile(`container ".*"`),
95 []*regexp.Regexp{},
106 []*regexp.Regexp{},
    [all...]
netbsd.go 7 "regexp"
13 ignores []*regexp.Regexp
16 func ctorNetbsd(kernelSrc, kernelObj string, ignores []*regexp.Regexp) (Reporter, []string, error) {
stub.go 7 "regexp"
13 ignores []*regexp.Regexp
16 func ctorStub(kernelSrc, kernelObj string, ignores []*regexp.Regexp) (Reporter, []string, error) {
akaros.go 11 "regexp"
19 ignores []*regexp.Regexp
23 func ctorAkaros(kernelSrc, kernelObj string, ignores []*regexp.Regexp) (Reporter, []string, error) {
114 stackStartRes: []*regexp.Regexp{
117 frameRes: []*regexp.Regexp{
137 parts: []*regexp.Regexp
    [all...]
report.go 12 "regexp"
85 type fn func(string, string, []*regexp.Regexp) (Reporter, []string, error)
87 func compileRegexps(list []string) ([]*regexp.Regexp, error) {
88 compiled := make([]*regexp.Regexp, len(list))
90 re, err := regexp.Compile(str)
101 suppressions []*regexp.Regexp
    [all...]
freebsd.go 8 "regexp"
14 ignores []*regexp.Regexp
17 func ctorFreebsd(kernelSrc, kernelObj string, ignores []*regexp.Regexp) (Reporter, []string, error) {
95 []*regexp.Regexp{},
105 []*regexp.Regexp{},
linux.go 12 "regexp"
26 ignores []*regexp.Regexp
27 consoleOutputRe *regexp.Regexp
28 questionableRe *regexp.Regexp
29 guiltyFileBlacklist []*regexp.Regexp
35 func ctorLinux(kernelSrc, kernelObj string, ignores []*regexp.Regexp) (Reporter, []string, error)
    [all...]
fuzz.go 9 "regexp"
12 var reporter, _ = NewReporter("linux", "", "", nil, []*regexp.Regexp{regexp.MustCompile("foo")})
fuchsia.go 11 "regexp"
21 ignores []*regexp.Regexp
28 zirconRIP = regexp.MustCompile(` RIP: (0x[0-9a-f]+) `)
29 zirconBT = regexp.MustCompile(`^bt#[0-9]+: (0x[0-9a-f]+)`)
31 zirconUnrelated = []*regexp.Regexp{
32 regexp.MustCompile(`^\[\d+\.\d+\] \d+\.\d+`),
33 regexp.MustCompile(`stopping other cpus`),
34 regexp.MustCompile(`^halting cpu`)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
SpecialCaseList.cpp 29 bool SpecialCaseList::Matcher::insert(std::string Regexp,
32 if (Regexp.empty()) {
33 REError = "Supplied regexp was blank";
37 if (Regex::isLiteralERE(Regexp)) {
38 Strings[Regexp] = LineNumber;
41 Trigrams.insert(Regexp);
44 for (size_t pos = 0; (pos = Regexp.find('*', pos)) != std::string::npos;
46 Regexp.replace(pos, strlen("*"), ".*");
49 Regexp = (Twine("^(") + StringRef(Regexp) + ")$").str()
    [all...]
  /development/tools/findunused/
find_unused_resources.rb 15 @@stringIdPattern = Regexp.new("name=\"([@_a-zA-Z0-9 ]*)\"")
16 @@layoutIdPattern = Regexp.new("android:id=\".*id/([_a-zA-Z0-9]*)\"")
19 Regexp.new("@string/([_a-zA-Z0-9]*)"),
20 Regexp.new("@array/([_a-zA-Z0-9]*)"),
24 Regexp.new("R.id.([_a-zA-Z0-9]+)"),
25 Regexp.new("R.string.([_a-zA-Z0-9]+)"),
26 Regexp.new("R.array.([_a-zA-Z0-9]+)"),
27 Regexp.new("R.color.([_a-zA-Z0-9]+)"),
28 Regexp.new("R.configVarying.([_a-zA-Z0-9]+)"),
29 Regexp.new("R.dimen.([_a-zA-Z0-9]+)")
    [all...]
  /external/llvm/lib/Support/
SpecialCaseList.cpp 96 // Get our prefix and unparsed regexp.
107 std::string Regexp = SplitRegexp.first;
110 // See if we can store Regexp in Strings.
111 if (Regex::isLiteralERE(Regexp)) {
112 Entries[Prefix][Category].Strings.insert(Regexp);
117 for (size_t pos = 0; (pos = Regexp.find("*", pos)) != std::string::npos;
119 Regexp.replace(pos, strlen("*"), ".*");
122 // Check that the regexp is valid.
123 Regex CheckRE(Regexp);
131 // Add this regexp into the proper group by its prefix
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
SpecialCaseList.h 120 bool insert(std::string Regexp, unsigned LineNumber, std::string &REError);
  /external/antlr/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 14 chr = Regexp.escape( chr )
15 exp = Regexp.new( "^ *#{ chr }" )
  /build/soong/cmd/javac_wrapper/
javac_wrapper.go 33 "regexp"
42 warningRe = regexp.MustCompile(filelinePrefix + `?(warning:) .*$`)
43 errorRe = regexp.MustCompile(filelinePrefix + `(.*?:) .*$`)
44 markerRe = regexp.MustCompile(`()\s*(\^)\s*$`)
153 func applyColor(line, color string, re *regexp.Regexp) (string, bool) {
165 re *regexp.Regexp
173 var filters = []*regexp.Regexp{
    [all...]
  /build/kati/
expr.go 22 "regexp"
716 *regexp.Regexp
721 Regexp: regexp.MustCompile(s),
725 func (r literalRE) String() string { return r.Regexp.String() }
752 re := patre.Regexp
  /build/blueprint/gotestmain/
gotestmain.go 117 "regexp"
138 var matchRe *regexp.Regexp
145 matchRe, err = regexp.Compile(matchPat)
  /external/google-breakpad/src/tools/mac/upload_system_symbols/
upload_system_symbols.go 55 "regexp"
86 blacklistRegexps = []*regexp.Regexp{
87 regexp.MustCompile(`/System/Library/Frameworks/Python\.framework/`),
88 regexp.MustCompile(`/System/Library/Frameworks/Ruby\.framework/`),
89 regexp.MustCompile(`_profile\.dylib$`),
90 regexp.MustCompile(`_debug\.dylib$`),
91 regexp.MustCompile(`\.a$`),
92 regexp.MustCompile(`\.dat$`),
  /external/syzkaller/pkg/vcs/
vcs.go 11 "regexp"
156 gitRepoRe = regexp.MustCompile(`^(git|ssh|http|https|ftp|ftps)://[a-zA-Z0-9-_]+(\.[a-zA-Z0-9-_]+)+(:[0-9]+)?/[a-zA-Z0-9-_./]+\.git(/)?$`)
157 gitBranchRe = regexp.MustCompile("^[a-zA-Z0-9-_/.]{2,200}$")
158 gitHashRe = regexp.MustCompile("^[a-f0-9]+$")
159 releaseTagRe = regexp.MustCompile(`^v([0-9]+).([0-9]+)(?:\.([0-9]+))?$`)
160 ccRes = []*regexp.Regexp{
161 regexp.MustCompile(`^Reviewed\-.*: (.*)$`),
162 regexp.MustCompile(`^[A-Za-z-]+\-and\-[Rr]eviewed\-.*: (.*)$`),
163 regexp.MustCompile(`^Acked\-.*: (.*)$`)
    [all...]
  /external/syzkaller/prog/
encoding_test.go 11 "regexp"
131 err *regexp.Regexp
  /external/syzkaller/vendor/github.com/google/go-cmp/cmp/
options.go 340 // comparison) and most attempts to compare *regexp.Regexp types are interested
345 // Comparer(func(x, y *regexp.Regexp) bool { return x.String() == y.String() })
  /build/soong/cmd/pom2mk/
pom2mk.go 27 "regexp"
37 regexp *regexp.Regexp
50 regex, err := regexp.Compile(split[0])
55 regexp: regex,
63 if r.regexp.MatchString(groupId + ":" + artifactId) {
64 return r.regexp.ReplaceAllString(groupId+":"+artifactId, r.repl)
65 } else if r.regexp.MatchString(artifactId) {
66 return r.regexp.ReplaceAllString(artifactId, r.repl
    [all...]
  /external/antlr/runtime/Ruby/lib/antlr3/
token.rb 121 when Regexp then obj =~ text
  /build/soong/cmd/pom2bp/
pom2bp.go 28 "regexp"
40 regexp *regexp.Regexp
53 regex, err := regexp.Compile(split[0])
58 regexp: regex,
66 if r.regexp.MatchString(groupId + ":" + artifactId) {
67 return r.regexp.ReplaceAllString(groupId+":"+artifactId, r.repl)
68 } else if r.regexp.MatchString(artifactId) {
69 return r.regexp.ReplaceAllString(artifactId, r.repl
    [all...]
  /external/guice/extensions/struts2/lib/
ant-1.6.5.jar 

Completed in 1099 milliseconds

1 2