/external/ltrace/testsuite/ltrace.torture/ |
vfork-thread.exp | 21 if [regexp {ELF from incompatible architecture} $exec_output] { 24 } elseif [ regexp {Couldn't get .hash data} $exec_output ] {
|
/external/nist-sip/java/gov/nist/core/ |
Match.java | 42 * picking a specific regexp package to avoid code dependencies. 43 * Use a package such as the jakarta regexp package to implement this.
|
/external/regex-re2/doc/ |
mksyntaxgo | 4 out=$GOROOT/src/pkg/regexp/syntax/doc.go 27 facilities of package regexp (such as Compile and Match) instead of this package.
|
/external/v8/test/mjsunit/compiler/ |
osr-maze2.js | 51 body = body.replace(new RegExp("bar"), "bar" + i); 53 var r = new RegExp("LOOP" + j + "\\(\\);");
|
/external/v8/test/mjsunit/es6/ |
classes-derived-return-type.js | 37 assertInstanceof(new DerivedWithReturn(/re/), RegExp); 69 assertInstanceof(new DerivedWithReturnNoSuper(/re/), RegExp);
|
/external/v8/test/preparser/ |
strict-octal-indirect-regexp.js | 28 // Strict mode with call to RegExp containing octal escape: 32 var re = RegExp("Hello\\040World");
|
/external/v8/test/webkit/fast/js/ |
regexp-unicode-handling.js | 64 var explicitRe=new RegExp(".m\\u2820p") 65 var newFromInlineRe=new RegExp(inlineRe.source) 67 var newFromEvalInlineRe=new RegExp(evalInlineRe.source) 69 var newFromExplicitRe=new RegExp(explicitRe.source) 100 var bexplicitRe=new RegExp(".m\\u007cp") 101 var bnewFromInlineRe=new RegExp(binlineRe.source) 103 var bnewFromEvalInlineRe=new RegExp(bevalInlineRe.source) 105 var bnewFromExplicitRe=new RegExp(bexplicitRe.source)
|
/prebuilts/go/darwin-x86/doc/progs/ |
slices.go | 9 "regexp" 42 var digitRegexp = regexp.MustCompile("[0-9]+")
|
/prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/internal/obj/x86/ |
obj6_test.go | 16 "regexp" 81 var spaces_re *regexp.Regexp = regexp.MustCompile("\\s+") 82 var marker_re *regexp.Regexp = regexp.MustCompile("MOVQ \\$([0-9]+), AX") 128 marker := regexp.MustCompile("MOVQ \\$([0-9]+), AX")
|
/prebuilts/go/darwin-x86/src/cmd/internal/obj/x86/ |
obj6_test.go | 13 "regexp" 78 var spaces_re *regexp.Regexp = regexp.MustCompile("\\s+") 79 var marker_re *regexp.Regexp = regexp.MustCompile("MOVQ \\$([0-9]+), AX") 125 marker := regexp.MustCompile("MOVQ \\$([0-9]+), AX")
|
/prebuilts/go/darwin-x86/src/cmd/pprof/internal/profile/ |
filter.go | 9 import "regexp" 13 // Returns true is the corresponding regexp matched at least one sample. 14 func (p *Profile) FilterSamplesByName(focus, ignore, hide *regexp.Regexp) (fm, im, hm bool) { 60 func (loc *Location) matchesName(re *regexp.Regexp) bool { 76 func (loc *Location) unmatchedLines(re *regexp.Regexp) []Line {
|
/prebuilts/go/darwin-x86/src/regexp/syntax/ |
parse_test.go | 15 Regexp string 264 re, err := Parse(tt.Regexp, flags) 266 t.Errorf("Parse(%#q): %v", tt.Regexp, err) 275 t.Errorf("Parse(%#q).Dump() = %#q want %#q", tt.Regexp, d, tt.Dump) 280 // dump prints a string representation of the regexp showing 282 func dump(re *Regexp) string { 310 // dumpRegexp writes an encoding of the syntax tree for the regexp re to b. 313 func dumpRegexp(b *bytes.Buffer, re *Regexp) { 383 re := &Regexp{Op: OpCharClass} 506 for _, regexp := range invalidRegexps [all...] |
regexp.go | 8 // In this package, re is always a *Regexp and r is always a rune. 17 // A Regexp is a node in a regular expression syntax tree. 18 type Regexp struct { 21 Sub []*Regexp // subexpressions, if any 22 Sub0 [1]*Regexp // storage for short Sub 62 func (x *Regexp) Equal(y *Regexp) bool { 115 func writeRegexp(b *bytes.Buffer, re *Regexp) { 245 func (re *Regexp) String() string { 291 // MaxCap walks the regexp to find the maximum capture index [all...] |
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue7690.go | 15 "regexp" 30 re := regexp.MustCompile(`(?m)^main\.main\(\)\n.*/issue7690.go:([0-9]+)`)
|
/prebuilts/go/linux-x86/doc/progs/ |
slices.go | 9 "regexp" 42 var digitRegexp = regexp.MustCompile("[0-9]+")
|
/prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/internal/obj/x86/ |
obj6_test.go | 16 "regexp" 81 var spaces_re *regexp.Regexp = regexp.MustCompile("\\s+") 82 var marker_re *regexp.Regexp = regexp.MustCompile("MOVQ \\$([0-9]+), AX") 128 marker := regexp.MustCompile("MOVQ \\$([0-9]+), AX")
|
/prebuilts/go/linux-x86/src/cmd/internal/obj/x86/ |
obj6_test.go | 13 "regexp" 78 var spaces_re *regexp.Regexp = regexp.MustCompile("\\s+") 79 var marker_re *regexp.Regexp = regexp.MustCompile("MOVQ \\$([0-9]+), AX") 125 marker := regexp.MustCompile("MOVQ \\$([0-9]+), AX")
|
/prebuilts/go/linux-x86/src/cmd/pprof/internal/profile/ |
filter.go | 9 import "regexp" 13 // Returns true is the corresponding regexp matched at least one sample. 14 func (p *Profile) FilterSamplesByName(focus, ignore, hide *regexp.Regexp) (fm, im, hm bool) { 60 func (loc *Location) matchesName(re *regexp.Regexp) bool { 76 func (loc *Location) unmatchedLines(re *regexp.Regexp) []Line {
|
/prebuilts/go/linux-x86/src/regexp/syntax/ |
parse_test.go | 15 Regexp string 264 re, err := Parse(tt.Regexp, flags) 266 t.Errorf("Parse(%#q): %v", tt.Regexp, err) 275 t.Errorf("Parse(%#q).Dump() = %#q want %#q", tt.Regexp, d, tt.Dump) 280 // dump prints a string representation of the regexp showing 282 func dump(re *Regexp) string { 310 // dumpRegexp writes an encoding of the syntax tree for the regexp re to b. 313 func dumpRegexp(b *bytes.Buffer, re *Regexp) { 383 re := &Regexp{Op: OpCharClass} 506 for _, regexp := range invalidRegexps [all...] |
regexp.go | 8 // In this package, re is always a *Regexp and r is always a rune. 17 // A Regexp is a node in a regular expression syntax tree. 18 type Regexp struct { 21 Sub []*Regexp // subexpressions, if any 22 Sub0 [1]*Regexp // storage for short Sub 62 func (x *Regexp) Equal(y *Regexp) bool { 115 func writeRegexp(b *bytes.Buffer, re *Regexp) { 245 func (re *Regexp) String() string { 291 // MaxCap walks the regexp to find the maximum capture index [all...] |
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue7690.go | 15 "regexp" 30 re := regexp.MustCompile(`(?m)^main\.main\(\)\n.*/issue7690.go:([0-9]+)`)
|
/external/testng/src/main/java/org/testng/internal/ |
MethodHelper.java | 74 String regexp = null;
local 80 regexp = fullyQualifiedRegexp.replace("$", "\\$");
81 boolean usePackage = regexp.indexOf('.') != -1;
82 Pattern pattern = Pattern.compile(regexp);
90 Pair<String, String> cacheKey = Pair.create(regexp, methodName);
110 Method maybeReferringTo = findMethodByName(m, regexp);
116 + "() depends on nonexistent method " + regexp);
127 * @param regExp regex representing a method and/or related class name
129 private static Method findMethodByName(ITestNGMethod testngMethod, String regExp) {
130 if (regExp == null) { [all...] |
/external/v8/src/runtime/ |
runtime-regexp.cc | 11 #include "src/regexp/jsregexp-inl.h" 12 #include "src/regexp/jsregexp.h" 470 Isolate* isolate, Handle<String> subject, Handle<JSRegExp> regexp, 475 int capture_count = regexp->CaptureCount(); 484 // Shortcut for simple non-regexp global replacements 485 if (regexp->TypeTag() == JSRegExp::ATOM && simple_replace) { 488 isolate, subject, regexp, replacement, last_match_info); 491 isolate, subject, regexp, replacement, last_match_info); 495 RegExpImpl::GlobalCache global_cache(regexp, subject, true, isolate); 555 Isolate* isolate, Handle<String> subject, Handle<JSRegExp> regexp, [all...] |
/external/autotest/server/cros/servo/ |
chrome_usbpd.py | 29 def set_uart_regexp(self, regexp): 32 @param regexp: regular expression 34 if self._cached_uart_regexp == regexp: 36 self._cached_uart_regexp = regexp 37 self._servo.set('usbpd_uart_regexp', regexp)
|
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/tools/ |
list_ports.py | 36 def grep(regexp): 42 r = re.compile(regexp, re.I) 53 usage = "%prog [options] [<regexp>]", 82 parser.error('more than one regexp not supported') 83 print "Filtered list with regexp: %r" % (args[0],)
|