Searched refs:regexp12 (Results 1 – 4 of 4) sorted by relevance
/external/v8/test/webkit/fast/regex/ |
D | dotstar-expected.txt | 128 PASS regexp12.exec('test') is null 129 PASS regexp12.exec('blah') is ['blah'] 130 PASS regexp12.exec('1blah') is ['1blah'] 131 PASS regexp12.exec('blah1') is ['blah1'] 132 PASS regexp12.exec('blah blah blah') is ['blah blah blah'] 133 PASS regexp12.exec('blah\nsecond') is null 134 PASS regexp12.exec('first\nblah') is ['blah'] 135 PASS regexp12.exec('first\nblah\nthird') is null 136 PASS regexp12.exec('first\nblah2\nblah3') is ['blah3']
|
D | dotstar.js | 147 var regexp12 = /.*(?:blah|buzz|bang).*$/; variable
|
D | parentheses.js | 59 var regexp12 = /(?:(.+), )?(.+), (..) to (?:(.+), )?(.+), (..)/; variable
|
D | parentheses-expected.txt | 40 PASS regexp12.exec('Seattle, WA to Buckley, WA') is ['Seattle, WA to Buckley, WA', undefined, 'Seat…
|