HomeSort by relevance Sort by last modified time
    Searched refs:captures (Results 1 - 8 of 8) sorted by null

  /external/v8/src/
interpreter-irregexp.h 41 int* captures,
string.js 261 // Compute the number of captures; see ECMA-262, 15.5.4.11, p. 102.
301 // the captures, we use it instead of the single digit
313 // Because of the captures range check in the parsing of two
316 // captures.
442 // Compute the parameter list consisting of the match, captures, index,
445 // The number of captures plus one for the match.
regexp.js 254 // on the captures array of the last successful match and the subject string
266 if (length <= 2) return ''; // There were no captures.
jsregexp.cc 385 OffsetsVector captures(number_of_capture_registers);
386 int* captures_vector = captures.vector();
397 captures.length(),
413 // The captures come in (start, end+1) pairs.
453 // The captures come in (start, end+1) pairs.
498 // captures) or other actions on register for example in order
511 // * The capture registers. Used for string captures.
    [all...]
  /external/v8/test/mjsunit/
string-match.js 33 function testMatch(name, input, regexp, result, captures, from, to) {
40 var lastParen = captures.length > 0 ? captures[captures.length - 1] : "";
47 // Returns array of match and captures.
49 assertEquals(captures.length + 1, matchResult.length, name + "-cap-return");
51 assertEquals(captures[i - 1], matchResult[i], name + "-cap-return-" + i);
60 if (i <= captures.length) {
61 assertEquals(captures[i - 1], RegExp["$" + i], name + "-capture-" + i);
  /external/v8/test/cctest/
test-regexp.cc 395 // Check that we don't allow more than kMaxCapture captures
397 const char* kTooManyCaptures = "Too many captures";
684 int* captures) {
691 captures);
707 int captures[4] = {42, 37, 87, 117}; local
719 captures);
722 CHECK_EQ(-1, captures[0]);
723 CHECK_EQ(-1, captures[1]);
724 CHECK_EQ(-1, captures[2]);
725 CHECK_EQ(-1, captures[3])
751 int captures[4] = {42, 37, 87, 117}; local
807 int captures[4] = {42, 37, 87, 117}; local
1254 int captures[2]; local
1314 int captures[5]; local
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_2/String/
split-002.js 190 cap = z.captures; // 14
229 return { endIndex : reResult.index + reResult[0].length, captures : cap };
242 return { endIndex : q + r, captures : cap }; // 7
  /external/jdiff/
xerces.jar 

Completed in 1159 milliseconds