/external/v8/test/mjsunit/ |
regexp-standalones.js | 28 /* Many of the Mozilla regexp tests used 'toSource' to test their 33 // Tests from ecma_3/RegExp/regress-78156.js 58 // Tests from ecma_3/RegExp/regress-72964.js
|
/external/v8/test/webkit/fast/js/ |
regexp-ranges-and-escaped-hyphens.js | 28 // Basic test for ranges - one to three and five are in regexp, four is not, and '-' should not match
|
/prebuilts/go/darwin-x86/src/cmd/go/ |
generate.go | 16 "regexp" 25 UsageLine: "generate [-run regexp] [file.go... | packages]", 130 generateRunRE *regexp.Regexp // compiled expression for -run 141 generateRunRE, err = regexp.Compile(generateRunFlag)
|
vendor_test.go | 14 "regexp" 103 re := regexp.MustCompile(`cannot find package "notfound" in any of:
|
/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 | 255 // Entire input is non string, comment, regexp tokens. 278 err: errorf(ErrSlashAmbig, nil, 0, "'/' could start a division or regexp: %.32q", s[i:]), 287 // tJSDelimited is the context transition function for the JS string and regexp 332 err: errorf(ErrPartialCharset, nil, 0, "unfinished JS regexp charset: %q", s),
|
/prebuilts/go/linux-x86/src/cmd/go/ |
generate.go | 16 "regexp" 25 UsageLine: "generate [-run regexp] [file.go... | packages]", 130 generateRunRE *regexp.Regexp // compiled expression for -run 141 generateRunRE, err = regexp.Compile(generateRunFlag)
|
vendor_test.go | 14 "regexp" 103 re := regexp.MustCompile(`cannot find package "notfound" in any of:
|
/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 | 255 // Entire input is non string, comment, regexp tokens. 278 err: errorf(ErrSlashAmbig, nil, 0, "'/' could start a division or regexp: %.32q", s[i:]), 287 // tJSDelimited is the context transition function for the JS string and regexp 332 err: errorf(ErrPartialCharset, nil, 0, "unfinished JS regexp charset: %q", s),
|
/system/extras/tests/net_test/ |
net_test.py | 369 regexp = re.compile(r" *(\d+): " # bucket 388 _, _, uid, _, _, refcnt, _, extra) = regexp.match(line).groups()
|
/external/regex-re2/re2/testing/ |
unicode_test.py | 7 """Unittest for the util/regexp/re2/unicode.py module.""" 13 from google3.util.regexp.re2 import unicode
|
/external/v8/src/regexp/x64/ |
regexp-macro-assembler-x64.h | 9 #include "src/regexp/regexp-macro-assembler.h" 90 static Result Match(Handle<Code> regexp, 105 // Called from RegExp if the stack-guard is triggered. 131 // one set of capture results. For the case of non-global regexp, we ignore 150 // one set of capture results. For the case of non-global regexp, we ignore 197 // The rbp-relative location of a regexp register.
|
/external/v8/test/webkit/fast/js/kde/ |
RegExp.js | 25 shouldBe("(new RegExp()).source", "'(?:)'"); 26 shouldBe("Boolean(new RegExp())", "true"); 27 shouldBeTrue("isNaN(Number(new RegExp()))"); 29 // RegExp constructor called as a function 30 shouldBe("RegExp(/x/).source", "'x'"); 31 //shouldBe("RegExp(/x/, 'g').source", "'/x/'"); // can't supply flags when constructing one RegExp from another, says mozilla 32 shouldBe("RegExp('x', 'g').global", "true"); 33 shouldBe("RegExp('x').source", "'x'"); 35 // RegExp constructo [all...] |
/ndk/sources/host-tools/nawk-20071023/ |
proto.h | 63 extern Node *regexp(void);
|
/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) {
|
/prebuilts/go/darwin-x86/src/cmd/pprof/internal/plugin/ |
plugin.go | 12 "regexp" 111 Symbols(r *regexp.Regexp, addr uint64) ([]*Sym, error)
|
/prebuilts/go/darwin-x86/src/cmd/pprof/ |
pprof.go | 12 "regexp" 212 func (f *file) Symbols(r *regexp.Regexp, addr uint64) ([]*plugin.Sym, error) {
|
/prebuilts/go/darwin-x86/src/go/types/ |
example_test.go | 28 "regexp" 76 rx := regexp.MustCompile(` 0x[a-fA-F0-9]*`)
|
/prebuilts/go/darwin-x86/src/mime/quotedprintable/ |
reader_test.go | 15 "regexp" 102 var badSoftRx = regexp.MustCompile(`=([^\r\n]+?\n)|([^\r\n]+$)|(\r$)|(\r[^\n]+\n)|( \r\n)`)
|
/prebuilts/go/darwin-x86/src/regexp/syntax/ |
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/bench/garbage/ |
parser.go | 254 "regexp", 255 "regexp/syntax",
|
/prebuilts/go/linux-x86/src/cmd/internal/objfile/ |
disasm.go | 13 "regexp" 107 func (d *Disasm) Print(w io.Writer, filter *regexp.Regexp, start, end uint64) {
|
/prebuilts/go/linux-x86/src/cmd/pprof/internal/plugin/ |
plugin.go | 12 "regexp" 111 Symbols(r *regexp.Regexp, addr uint64) ([]*Sym, error)
|
/prebuilts/go/linux-x86/src/cmd/pprof/ |
pprof.go | 12 "regexp" 212 func (f *file) Symbols(r *regexp.Regexp, addr uint64) ([]*plugin.Sym, error) {
|