/prebuilts/go/darwin-x86/src/cmd/pprof/internal/commands/ |
commands.go | 31 // the command expects a regexp parameter (typically a function name). 56 "disasm": {c, report.Dis, nil, true, "Output annotated assembly for functions matching regexp or address"}, 57 "list": {c, report.List, nil, true, "Output annotated source for functions matching regexp"}, 58 "peek": {c, report.Tree, nil, true, "Output callers/callees of functions matching regexp"}, 80 "weblist": {c, report.WebList, invokeVisualizer(interactive, awayFromTTY("html"), "html", browsers()), true, "Output annotated source in HTML for functions matching regexp or address"},
|
/prebuilts/go/linux-x86/src/cmd/pprof/internal/commands/ |
commands.go | 31 // the command expects a regexp parameter (typically a function name). 56 "disasm": {c, report.Dis, nil, true, "Output annotated assembly for functions matching regexp or address"}, 57 "list": {c, report.List, nil, true, "Output annotated source for functions matching regexp"}, 58 "peek": {c, report.Tree, nil, true, "Output callers/callees of functions matching regexp"}, 80 "weblist": {c, report.WebList, invokeVisualizer(interactive, awayFromTTY("html"), "html", browsers()), true, "Output annotated source in HTML for functions matching regexp or address"},
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/ |
cris.exp | 71 if [regexp "(.)(.)(.)" $imcode junk imcode3 imcode2 imcode1] { 74 regexp "(.)(.)" $imcode junk imcode2 imcode1 80 if [regexp "(.)(.)(.)" $ircode junk ircode3 ircode2 ircode1] { 83 regexp "(.)(.)" $ircode junk ircode2 ircode1 91 if [regexp "(.)(.)(.)" $imcode0 junk imcode03 imcode02 imcode01] { 94 regexp "(.)(.)" $imcode0 junk imcode02 imcode01 100 if [regexp "(.)(.)(.)" $ircode0 junk ircode03 ircode02 ircode01] { 103 regexp "(.)(.)" $ircode0 junk ircode02 ircode01 124 || ![regexp "$avoid_regex" $line] } { 162 regexp "^(.*)@IM\\+(.)(.)(.)(.)@(.*)$" [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/lib/ |
gas-defs.exp | 53 regexp "\[^\n\]* (cygnus-|)(\[-0-9.a-zA-Z-\]+)\[\r\n\].*" $tmp version cyg number 64 if [regexp ">& */dev/null" $redir] then { 67 } elseif [regexp "> */dev/null" $redir] then { 71 } elseif [regexp ">&.*" $redir] then { 75 } elseif [regexp "2>.*" $redir] then { 79 } elseif [regexp ">.*" $redir] then { 117 if { [lindex $status 0] != 0 && [regexp "2>.*" $redir] } then { 135 if { [lindex $status 0] != 0 && [regexp "2>.*" $redir] } then { 417 # FILE contains regexp lines to be matched against the diagnostic 431 # After the option lines come regexp lines. `run_dump_test' call [all...] |
/prebuilts/go/darwin-x86/src/cmd/go/ |
vcs.go | 18 "regexp" 65 pattern string // regexp to extract tags from list 150 var scpSyntaxRe = regexp.MustCompile(`^([a-zA-Z0-9_]+)@([a-zA-Z0-9._-]+):(.*)$`) 434 re := regexp.MustCompile(`(?m-s)` + tc.pattern) 454 re := regexp.MustCompile(`(?m-s)` + tc.pattern) 496 regexp *regexp.Regexp // cached compiled form of re 545 var httpPrefixRE = regexp.MustCompile(`^https?:`) 615 m := srv.regexp.FindStringSubmatch(importPath [all...] |
/prebuilts/go/linux-x86/src/cmd/go/ |
vcs.go | 18 "regexp" 65 pattern string // regexp to extract tags from list 150 var scpSyntaxRe = regexp.MustCompile(`^([a-zA-Z0-9_]+)@([a-zA-Z0-9._-]+):(.*)$`) 434 re := regexp.MustCompile(`(?m-s)` + tc.pattern) 454 re := regexp.MustCompile(`(?m-s)` + tc.pattern) 496 regexp *regexp.Regexp // cached compiled form of re 545 var httpPrefixRE = regexp.MustCompile(`^https?:`) 615 m := srv.regexp.FindStringSubmatch(importPath [all...] |
/external/v8/test/mjsunit/harmony/ |
array-concat.js | 470 RegExp.prototype[Symbol.isConcatSpreadable] = true; 471 RegExp.prototype.length = 3; 474 RegExp.prototype[0] = 1; 475 RegExp.prototype[1] = 2; 476 RegExp.prototype[2] = 3; 479 delete RegExp.prototype[Symbol.isConcatSpreadable]; 480 delete RegExp.prototype[0]; 481 delete RegExp.prototype[1]; 482 delete RegExp.prototype[2]; 483 delete RegExp.prototype.length [all...] |
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elfvsb/ |
elfvsb.exp | 149 && [regexp "undefined reference to \`\.?visibility\'" $link_output] 150 && [regexp "undefined reference to \`visibility_var\'" $link_output] } { 153 && [regexp "undefined reference to \`\.?visibility\'" $link_output] 154 && [regexp "undefined reference to \`visibility_var\'" $link_output] } { 172 && [regexp "undefined reference to \`\.?visibility\'" $link_output] 173 && [regexp "undefined reference to \`visibility_var\'" $link_output] } { 176 && [regexp "undefined reference to \`\.?visibility\'" $link_output] 177 && [regexp "undefined reference to \`visibility_def\'" $link_output] 178 && [regexp "undefined reference to \`\.?visibility_func\'" $link_output] 179 && [regexp "undefined reference to \`visibility_var\'" $link_output] } [all...] |
/external/autotest/server/site_tests/native_Benchmarks/ |
v8.tar.bz2 | |
/external/v8/src/ast/ |
prettyprinter.cc | 252 if (node->flags() & RegExp::kGlobal) Print("g"); 253 if (node->flags() & RegExp::kIgnoreCase) Print("i"); 254 if (node->flags() & RegExp::kMultiline) Print("m"); 255 if (node->flags() & RegExp::kUnicode) Print("u"); 256 if (node->flags() & RegExp::kSticky) Print("y"); 764 Print(" RegExp("); 767 if (node->flags() & RegExp::kGlobal) Print("g"); 768 if (node->flags() & RegExp::kIgnoreCase) Print("i"); 769 if (node->flags() & RegExp::kMultiline) Print("m"); 770 if (node->flags() & RegExp::kUnicode) Print("u") [all...] |
/external/v8/test/webkit/fast/regex/ |
parentheses.js | 106 var regexp27 = new RegExp( 132 var regexp28 = new RegExp( 163 var regexp33 = RegExp('^(?:(?:(a)(xyz|[^>"\'\s]*)?)|(/?>)|.[^\w\s>]*)'); 238 /* The regexp on the prior line confuses Xcode syntax highlighting, this coment fixes it! */ 242 /* The regexp on the prior line confuses Xcode syntax highlighting, this coment fixes it! */ 251 var regexp51 = new RegExp(s);
|
/prebuilts/go/darwin-x86/src/go/build/ |
deps_test.go | 157 "regexp": {"L2", "regexp/syntax"}, 158 "regexp/syntax": {"L2"}, 180 "go/doc": {"L4", "go/ast", "go/token", "regexp", "text/template"}, 239 "index/suffixarray": {"L4", "regexp"}, 359 "net/http/cgi": {"L4", "NET", "OS", "crypto/tls", "net/http", "regexp"},
|
/prebuilts/go/darwin-x86/src/go/doc/ |
comment.go | 11 "regexp" 47 // Regexp for Go identifiers 50 // Regexp for URLs 59 var matchRx = regexp.MustCompile(`(` + urlRx + `)|(` + identRx + `)`) 134 // match against first parenthesized sub-regexp; must be match against urlRx 260 var nonAlphaNumRx = regexp.MustCompile(`[^a-zA-Z0-9]`)
|
/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 427 func (re *Regexp) doExecute(r io.RuneReader, b []byte, s string, pos int, ncap int) []int {
|
/prebuilts/go/linux-x86/src/go/build/ |
deps_test.go | 157 "regexp": {"L2", "regexp/syntax"}, 158 "regexp/syntax": {"L2"}, 180 "go/doc": {"L4", "go/ast", "go/token", "regexp", "text/template"}, 239 "index/suffixarray": {"L4", "regexp"}, 359 "net/http/cgi": {"L4", "NET", "OS", "crypto/tls", "net/http", "regexp"},
|
/prebuilts/go/linux-x86/src/go/doc/ |
comment.go | 11 "regexp" 47 // Regexp for Go identifiers 50 // Regexp for URLs 59 var matchRx = regexp.MustCompile(`(` + urlRx + `)|(` + identRx + `)`) 134 // match against first parenthesized sub-regexp; must be match against urlRx 260 var nonAlphaNumRx = regexp.MustCompile(`[^a-zA-Z0-9]`)
|
/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 427 func (re *Regexp) doExecute(r io.RuneReader, b []byte, s string, pos int, ncap int) []int {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/ |
AdtConstants.java | 47 * <li><code>RE_</code> Regexp constant.</li> 127 /** Regexp for java extension, i.e. "\.java$" */ 129 /** Regexp for aidl extension, i.e. "\.aidl$" */ 131 /** Regexp for rs extension, i.e. "\.rs$" */ 133 /** Regexp for rs extension, i.e. "\.fs$" */ 135 /** Regexp for .d extension, i.e. "\.d$" */
|
/build/tools/droiddoc/templates-pdk/assets/ |
search_autocomplete.js | 192 var partPrefixAlnumRE = new RegExp('\\b' + queryAlnum); 193 var partExactAlnumRE = new RegExp('\\b' + queryAlnum + '\\b'); 238 var queryRE = new RegExp(
|
/external/bison/build-aux/ |
useless-if-before-free | 117 my $regexp = qr/(?:$or)/; 135 (?: \s*$regexp\s*\((?:\s*\([^)]+\))?\s*([^)]+)\)\s*;| 136 \s*\{\s*$regexp\s*\((?:\s*\([^)]+\))?\s*([^)]+)\)\s*;\s*\}))/sxg)
|
/external/doclava/res/assets/templates/assets/ |
search_autocomplete.js | 192 var partPrefixAlnumRE = new RegExp('\\b' + queryAlnum); 193 var partExactAlnumRE = new RegExp('\\b' + queryAlnum + '\\b'); 238 var queryRE = new RegExp(
|
/external/v8/src/ |
compilation-cache.h | 165 // Returns the regexp data associated with the given regexp if it 183 // Associate the (source, flags) pair to the given regexp data.
|
/external/v8/test/webkit/fast/js/kde/ |
inbuilt_function_proto.js | 115 shouldBe("RegExp.prototype.exec.__proto__","Function.prototype"); 116 shouldBe("RegExp.prototype.test.__proto__","Function.prototype"); 117 shouldBe("RegExp.prototype.toString.__proto__","Function.prototype");
|
/prebuilts/go/darwin-x86/src/cmd/doc/ |
doc_test.go | 12 "regexp" 315 re, err := regexp.Compile(yes) 325 re, err := regexp.Compile(no)
|
/prebuilts/go/darwin-x86/src/cmd/internal/objfile/ |
disasm.go | 13 "regexp" 107 func (d *Disasm) Print(w io.Writer, filter *regexp.Regexp, start, end uint64) {
|