Lines Matching refs:that

2547     var that = context(this, searchString, STARTS_WITH);
2548 var index = toLength(Math.min(arguments.length > 1 ? arguments[1] : undefined, that.length));
2550 …return $startsWith ? $startsWith.call(that, search, index) : that.slice(index, index + search.leng…
2914 module.exports = function (fn, that, length) {
2916 if (that === undefined) return fn;
2921 return fn.call(that, a);
2926 return fn.call(that, a, b);
2931 return fn.call(that, a, b, c);
2936 return fn.apply(that, arguments);
2992 module.exports = function (that, searchString, NAME) {
2994 return String(defined(that));
3113 var that = context(this, searchString, ENDS_WITH);
3115 var len = toLength(that.length);
3118 …return $endsWith ? $endsWith.call(that, search, end) : that.slice(end - search.length, end) === se…
3326 return function (that, pos) {
3327 var s = String(defined(that));
4622 var _exports = module.exports = function (iterable, entries, fn, that, ITERATOR) {
4626 var f = ctx(fn, that, entries ? 2 : 1);
4768 module.exports = function (fn, args, that) {
4769 var un = that === undefined;
4773 return un ? fn() : fn.call(that);
4776 return un ? fn(args[0]) : fn.call(that, args[0]);
4779 return un ? fn(args[0], args[1]) : fn.call(that, args[0], args[1]);
4782 return un ? fn(args[0], args[1], args[2]) : fn.call(that, args[0], args[1], args[2]);
4785 …return un ? fn(args[0], args[1], args[2], args[3]) : fn.call(that, args[0], args[1], args[2], args…
4788 return fn.apply(that, args);
5166 return function ($this, callbackfn, that) {
5169 var f = ctx(callbackfn, that, 3);
5357 var uncaughtFrozenStore = function uncaughtFrozenStore(that) {
5358 return that._l || (that._l = new UncaughtFrozenStore());
5393 var C = wrapper(function (that, iterable) {
5394 anInstance(that, C, NAME, '_i');
5395 that._t = NAME;
5396 that._i = id++;
5397 that._l = undefined;
5398 if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);
5416 def: function def(that, key, value) {
5418 if (data === true) uncaughtFrozenStore(that).set(key, value);else data[that._i] = value;
5419 return that;
5522 var that = inheritIfRequired(new Base(), target, C);
5523 if (iterable != undefined) forOf(iterable, IS_MAP, that[ADDER], that);
5524 return that;
5558 module.exports = function (that, target, C) {
5563 setPrototypeOf(that, P);
5566 return that;
6314 module.exports = function (that, maxLength, fillString, left) {
6315 var S = String(defined(that));