Lines Matching refs:thisArg
8 thisArg: Object, initial_k: Smi): Object {
24 Call(context, callbackfn, thisArg, kValue, k, o);
33 context: Context, receiver: Object, callback: Object, thisArg: Object,
40 context, jsreceiver, callback, thisArg, Undefined, jsreceiver, initialK,
45 context: Context, receiver: Object, callback: Object, thisArg: Object,
52 context, jsreceiver, callback, thisArg, Undefined, jsreceiver, initialK,
57 context: Context, receiver: JSReceiver, callback: Object, thisArg: Object,
67 context, receiver, number_length, callbackfn, thisArg, k);
76 thisArg: Object): void labels
92 Call(context, callbackfn, thisArg, value, k, a);
110 thisArg: Object): Object labels
124 context, a, smi_len, callbackfn, thisArg)
127 VisitAllElements<FixedArray>(context, a, smi_len, callbackfn, thisArg)
158 // 4. If thisArg is present, let T be thisArg; else let T be undefined.
159 const thisArg: Object = arguments.length > 1 ? arguments[1] : Undefined;
164 return FastArrayForEach(context, o, len, callbackfn, thisArg)
172 context, o, len, callbackfn, thisArg, k);