OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testEscapes
(Results
1 - 3
of
3
) sorted by null
/external/v8/test/mjsunit/regress/
regress-3229.js
6
function
testEscapes
(expected, regexp) {
11
testEscapes
("\\/", /\//);
12
testEscapes
("\\/\\/", /\/\//);
13
testEscapes
("\\/", new RegExp("/"));
14
testEscapes
("\\/", new RegExp("\\/"));
15
testEscapes
("\\\\/", new RegExp("\\\\/"));
16
testEscapes
("\\/\\/", new RegExp("\\/\\/"));
17
testEscapes
("\\/\\/\\/\\/", new RegExp("////"));
18
testEscapes
("\\/\\/\\/\\/", new RegExp("\\//\\//"));
19
testEscapes
("(?:)", new RegExp(""))
[
all
...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
Pattern2Test.java
206
public void
testEscapes
() throws PatternSyntaxException {
[
all
...]
/libcore/luni/src/test/java/org/apache/harmony/regex/tests/java/util/regex/
PatternTest.java
625
public void
testEscapes
() {
[
all
...]
Completed in 122 milliseconds