Lines Matching refs:predicate
8 predicate: Callable, thisArg: JSAny, o: JSReceiver,
19 // 5c. Let testResult be ! ToBoolean(? Call(predicate, thisArg, « kValue,
21 const testResult: JSAny = Call(context, predicate, thisArg, value, k, o);
37 o: JSReceiver, len: Number, predicate: Callable, thisArg: JSAny): JSAny
59 // 5c. Let testResult be ! ToBoolean(? Call(predicate, thisArg, « kValue,
62 Call(context, predicate, thisArg, value, k, fastOW.Get());
88 // 3. If IsCallable(predicate) is false, throw a TypeError exception.
92 const predicate = Cast<Callable>(arguments[0]) otherwise NotCallableError;
95 // each invocation of predicate. If it is not provided, undefined is used
101 return FastArrayFindLast(o, len, predicate, thisArg)
104 return ArrayFindLastLoopContinuation(predicate, thisArg, o, k);