/external/webrtc/webrtc/tools/e2e_quality/audio/ |
run_audio_test.py | 49 parser.add_option('--regexp', 112 if options.compare and options.regexp: 121 value = ''.join(re.findall(options.regexp, output))
|
/external/autotest/server/cros/servo/ |
pd_console.py | 85 def send_pd_command_get_output(self, cmd, regexp): 89 @param regexp: regular expression for desired output 91 return self.console.send_command_get_output(cmd, regexp) 126 for key, regexp in self.PD_STATE_DICT.iteritems(): 127 value = re.search(regexp, m[0][0])
|
/external/regex-re2/ |
Android.mk | 5 # Android makefile for the re2 regexp library. 31 re2/regexp.cc \
|
/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/regex-re2/re2/testing/ |
exhaustive_tester.h | 18 // then check that NFA, DFA, and PCRE agree about whether each regexp matches 22 // of random regexp and strings, allowing testing of larger expressions 46 void HandleRegexp(const string& regexp); 57 string wrapper_; // Regexp wrapper - either empty or has one %s. 58 string topwrapper_; // Regexp top-level wrapper. 60 int tests_; // Number of regexp tests.
|
/external/webrtc/tools/matlab/ |
parseLog.m | 34 colheaders = regexp(table.textdata{1}, ',', 'split'); 41 m = regexp(colheaders{i}, '([\w\t]+)\[(\d+)\]', 'tokens');
|
/prebuilts/go/darwin-x86/doc/articles/wiki/ |
final-parsetemplate.go | 11 "regexp" 73 var validPath = regexp.MustCompile("^/(edit|save|view)/([a-zA-Z0-9]+)$")
|
final.go | 11 "regexp" 70 var validPath = regexp.MustCompile("^/(edit|save|view)/([a-zA-Z0-9]+)$")
|
/prebuilts/go/darwin-x86/src/mime/multipart/ |
formdata_test.go | 11 "regexp" 17 testBody := regexp.MustCompile("\n").ReplaceAllString(message, "\r\n")
|
/prebuilts/go/darwin-x86/src/runtime/pprof/ |
mprof_test.go | 10 "regexp" 95 if !regexp.MustCompile(test).Match(buf.Bytes()) {
|
/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/articles/wiki/ |
final-parsetemplate.go | 11 "regexp" 73 var validPath = regexp.MustCompile("^/(edit|save|view)/([a-zA-Z0-9]+)$")
|
final.go | 11 "regexp" 70 var validPath = regexp.MustCompile("^/(edit|save|view)/([a-zA-Z0-9]+)$")
|
/prebuilts/go/linux-x86/src/mime/multipart/ |
formdata_test.go | 11 "regexp" 17 testBody := regexp.MustCompile("\n").ReplaceAllString(message, "\r\n")
|
/prebuilts/go/linux-x86/src/runtime/pprof/ |
mprof_test.go | 10 "regexp" 95 if !regexp.MustCompile(test).Match(buf.Bytes()) {
|
/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...] |
/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/ |
simplify.go | 7 // Simplify returns a regexp equivalent to re but without counted repetitions 9 // The resulting regexp will execute correctly but its string representation 13 // The returned regexp may share structure with or be the original. 14 func (re *Regexp) Simplify() *Regexp { 20 // Simplify children, building new Regexp if children change. 26 nre = new(Regexp) 45 return &Regexp{Op: OpEmptyMatch} 64 nre := &Regexp{Op: OpConcat} 85 var prefix *Regexp [all...] |
/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/ |
simplify.go | 7 // Simplify returns a regexp equivalent to re but without counted repetitions 9 // The resulting regexp will execute correctly but its string representation 13 // The returned regexp may share structure with or be the original. 14 func (re *Regexp) Simplify() *Regexp { 20 // Simplify children, building new Regexp if children change. 26 nre = new(Regexp) 45 return &Regexp{Op: OpEmptyMatch} 64 nre := &Regexp{Op: OpConcat} 85 var prefix *Regexp [all...] |
/external/v8/ |
Android.v8common.mk | 267 src/regexp/interpreter-irregexp.cc \ 268 src/regexp/jsregexp.cc \ 269 src/regexp/regexp-ast.cc \ 270 src/regexp/regexp-macro-assembler.cc \ 271 src/regexp/regexp-macro-assembler-irregexp.cc \ 272 src/regexp/regexp-macro-assembler-tracer.cc [all...] |
/external/v8/test/mjsunit/ |
regexp-global.js | 144 // Create regexp that has a *lot* of captures. 156 // Atomic regexp. 160 // Small regexp (no capture); 164 // Small regexp (one capture). 168 // Large regexp (a lot of captures). 169 regexps.push(new RegExp(re_string, "g")); 175 regexp, 183 assertEquals("deadbeef", RegExp.lastMatch); 184 assertEquals("dead", RegExp["$1"]); 186 assertEquals(last_match_expectations[i], RegExp.lastMatch) [all...] |
/prebuilts/go/darwin-x86/src/cmd/pprof/internal/driver/ |
driver.go | 17 "regexp" 225 func compileFocusIgnore(focus, ignore, hide string) (f, i, h *regexp.Regexp, err error) { 227 if f, err = regexp.Compile(focus); err != nil { 228 return nil, nil, nil, fmt.Errorf("parsing focus regexp: %v", err) 233 if i, err = regexp.Compile(ignore); err != nil { 234 return nil, nil, nil, fmt.Errorf("parsing ignore regexp: %v", err) 239 if h, err = regexp.Compile(hide); err != nil { 240 return nil, nil, nil, fmt.Errorf("parsing hide regexp: %v", err) 251 ui.PrintErr("Interpreted '", filter, "' as range, not regexp") [all...] |
/prebuilts/go/linux-x86/src/cmd/pprof/internal/driver/ |
driver.go | 17 "regexp" 225 func compileFocusIgnore(focus, ignore, hide string) (f, i, h *regexp.Regexp, err error) { 227 if f, err = regexp.Compile(focus); err != nil { 228 return nil, nil, nil, fmt.Errorf("parsing focus regexp: %v", err) 233 if i, err = regexp.Compile(ignore); err != nil { 234 return nil, nil, nil, fmt.Errorf("parsing ignore regexp: %v", err) 239 if h, err = regexp.Compile(hide); err != nil { 240 return nil, nil, nil, fmt.Errorf("parsing hide regexp: %v", err) 251 ui.PrintErr("Interpreted '", filter, "' as range, not regexp") [all...] |