Lines Matching refs:call

92         compliantExecNpcg = nativ.exec.call(/()??/, "")[1] === undef,
156 … var flags = nativ.replace.call(getNativeFlags(regex) + (addFlags || ""), duplicateFlags, "");
159 flags = nativ.replace.call(flags, new RegExp("[" + removeFlags + "]+", "g"), "");
201 return Object.prototype.toString.call(value).toLowerCase() === "[object " + type + "]";
243 … if ((t.scope === "all" || t.scope === scope) && (!t.trigger || t.trigger.call(context))) {
245 …match = fixed.exec.call(t.pattern, pattern); // Fixed `exec` here allows use of named backreferenc…
248 output: t.handler.call(context, match, scope),
349 …if (nativ.match.call(flags, duplicateFlags)) { // Don't use test/exec because they would update la…
353 pattern = nativ.replace.call(pattern, /^\(\?([\w$]+)\)/, function ($0, $1) {
354 if (nativ.test.call(/[gy]/, $1)) {
357 flags = nativ.replace.call(flags + $1, duplicateFlags, "");
374 match = nativ.exec.call(nativeTokens[scope], pattern.slice(pos));
392 return augment(new RegExp(output.join(""), nativ.replace.call(flags, /[^gimy]+/g, "")),
415 … registeredFlags = nativ.replace.call(registeredFlags + options.customFlags, duplicateFlags, "");
485 return nativ.replace.call(str, /[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
520 match = fixed.exec.call(r2, str); // Fixed `exec` required for `lastIndex` fix, etc.
555 callback.call(context, match, ++i, str, regex);
744 …result = fixed.replace.call(String(str), search2, replacement); // Fixed `replace` required for na…
777 return fixed.split.call(str, separator, limit);
922 r2 = new RegExp(this.source, nativ.replace.call(getNativeFlags(this), "g", ""));
925 nativ.replace.call(String(str).slice(match.index), r2, function () {
963 return !!fixed.exec.call(this, str);
983 return fixed.exec.call(regex, this);
1012 result = nativ.replace.call(String(this), search, function () {
1033 result = nativ.replace.call(str, search, function () {
1035 … return nativ.replace.call(String(replacement), replacementToken, function ($0, $1, $2) {
1130 if (!nativ.test.call(separator, "") || lastLength) {
1178 …return nativ.test.call(quantifier, match.input.slice(match.index + match[0].length)) ? "" : "(?:)";
1202 …return nativ.test.call(quantifier, match.input.slice(match.index + match[0].length)) ? "" : "(?:)";
1897 func.call(scope || window, e);