Lines Matching refs:captureNames
631 function augment(regex, captureNames, xSource, xFlags, isInternalOnly) {
635 captureNames: captureNames
740 …regex = augment(new RegExp(regex.source, flags), hasNamedCapture(regex) ? xData.captureNames.slice…
779 return !!(regex[REGEX_DATA] && regex[REGEX_DATA].captureNames);
1060 captureNames: []
1132 captures: context.hasNamedCapture ? context.captureNames : null
1823 captureNames,
1826 var name = captureNames[numCaptures - numPriorCaptures];
1854 captureNames = pattern[REGEX_DATA] && pattern[REGEX_DATA].captureNames || [];
1911 if (this[REGEX_DATA] && this[REGEX_DATA].captureNames) {
1914 name = this[REGEX_DATA].captureNames[i - 1];
1992 captureNames,
1997 captureNames = search[REGEX_DATA].captureNames;
2012 if (captureNames) {
2017 for (i = 0; i < captureNames.length; ++i) {
2018 if (captureNames[i]) {
2019 args[0][captureNames[i]] = args[i + 1];
2055 n = captureNames ? indexOf(captureNames, $1) : -1;
2264 var index = isNaN(match[1]) ? indexOf(this.captureNames, match[1]) + 1 : +match[1],
2266 if (!index || index > this.captureNames.length) {
2279 …if (!(scope === defaultScope && /^[1-9]/.test(match[1]) && +match[1] <= this.captureNames.length) …
2304 if (indexOf(this.captureNames, match[1]) > -1) {
2307 this.captureNames.push(match[1]);
2320 this.captureNames.push(null);