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

  /external/v8/src/
macros.py 158 macro NUMBER_OF_CAPTURES(array) = ((array)[0]);
regexp.js 131 var numResults = NUMBER_OF_CAPTURES(lastMatchInfo) >> 1;
314 var length = NUMBER_OF_CAPTURES(lastMatchInfo);
370 if (index >= NUMBER_OF_CAPTURES(lastMatchInfo)) return '';
string.js 298 var m = NUMBER_OF_CAPTURES(matchInfo) >> 1; // Includes the match.
431 if (NUMBER_OF_CAPTURES(lastMatchInfo) == 2) {
486 var m = NUMBER_OF_CAPTURES(matchInfo) >> 1;
662 var matchinfo_len = NUMBER_OF_CAPTURES(matchInfo) + REGEXP_FIRST_CAPTURE;
  /external/chromium_org/v8/src/
regexp.js 135 var numResults = NUMBER_OF_CAPTURES(lastMatchInfo) >> 1;
311 var length = NUMBER_OF_CAPTURES(lastMatchInfo);
369 if (index >= NUMBER_OF_CAPTURES(lastMatchInfo)) return '';
macros.py 181 macro NUMBER_OF_CAPTURES(array) = ((array)[0]);
string.js 360 var number_of_captures = NUMBER_OF_CAPTURES(matchInfo);
365 if (new_scaled_index < number_of_captures) {
371 if (scaled_index != 0 && scaled_index < number_of_captures) {
451 if (NUMBER_OF_CAPTURES(lastMatchInfo) == 2) {
518 var m = NUMBER_OF_CAPTURES(matchInfo) >> 1;
693 var matchinfo_len = NUMBER_OF_CAPTURES(matchInfo) + REGEXP_FIRST_CAPTURE;

Completed in 68 milliseconds