Lines Matching refs:apply
38 return ReturnArguments.apply(this, arguments);
51 return object.f.apply(this, arguments);
64 return ReturnArguments.apply(this, arguments);
73 return ReturnReceiver.apply(receiver, arguments);
84 return ReturnReceiver.apply(Object, arguments);
92 f.apply = function() { return 87; } function
93 return f.apply(this, arguments);
102 var object = { apply: Function.prototype.apply }; property
103 return object.apply(this, arguments);
113 var result = ReturnArguments.apply(this, arguments);
123 return ReturnArguments.apply(this, arguments);
134 assertEquals(2048, Global.apply(this, array).length);