HomeSort by relevance Sort by last modified time
    Searched refs:ig (Results 1 - 25 of 32) sorted by null

1 2

  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-179524.js 62 var re = /z/ig;
138 * by taking any optional 2nd argument to be a regexp flag string (e.g.'ig').
153 actual = str.match('a', 'ig').toString();
154 expect = str.match(/a/ig).toString();
172 actual = str.match('a', 'ig', new Object()).toString();
173 expect = str.match(/a/ig).toString();
218 actual = str.search('a', 'ig');
219 expect = str.search(/a/ig);
237 actual = str.search('a', 'ig', new Object());
238 expect = str.search(/a/ig);
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
regress-169534.js 55 var re = /(\|)([\w\x81-\xff ]*)(\|)([\/a-z][\w:\/\.]*\.[a-z]{3,4})(\|)/ig;
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/
ignoreCase.js 49 // 'ABC def ghi'.match(/[a-z]+/ig)
50 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/[a-z]+/ig)",
51 String(["ABC","def","ghi"]), String('ABC def ghi'.match(/[a-z]+/ig)));
57 // 'ABC def ghi'.match(/([a-z]+)/ig)
58 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/([a-z]+)/ig)",
59 String(["ABC","def","ghi"]), String('ABC def ghi'.match(/([a-z]+)/ig)));
77 // 'ABC def ghi'.match(new RegExp('[a-z]+','ig'))
78 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(new RegExp('[a-z]+','ig'))",
79 String(["ABC","def","ghi"]), String('ABC def ghi'.match(new RegExp('[a-z]+','ig'))));
85 // 'ABC def ghi'.match(new RegExp('([a-z]+)','ig'))
    [all...]
flags.js 62 testcases[count++] = new TestCase ( SECTION, "'xa Xb xc xd Xe xf'.match(/x./ig)",
63 String(["xa","Xb","xc","xd","Xe","xf"]), String('xa Xb xc xd Xe xf'.match(/x./ig)));
65 testcases[count++] = new TestCase ( SECTION, "'xa Xb xc xd Xe xf'.match(new RegExp('x.','ig'))",
66 String(["xa","Xb","xc","xd","Xe","xf"]), String('xa Xb xc xd Xe xf'.match(new RegExp('x.','ig'))));
toString.js 56 // re = /test2/ig; re.toString()
57 re = /test2/ig;
58 testcases[count++] = new TestCase ( SECTION, "re = /test2/ig; re.toString()",