Lines Matching defs:arguments
14 // Arguments provides access to runtime call parameters.
16 // It uses the fact that the instance fields of Arguments
22 // Object* Runtime_function(Arguments args) {
29 class Arguments BASE_EMBEDDED {
31 Arguments(int length, Object** arguments)
32 : length_(length), arguments_(arguments) {
59 // Get the total number of arguments including the receiver.
62 Object** arguments() { return arguments_; }
74 // For each type of callback, we have a list of arguments
103 // Custom arguments replicate a small segment of stack that can be
104 // accessed through an Arguments object the same way the actual stack
276 static INLINE(Type __RT_impl_##Name(Arguments args, Isolate* isolate)); \
279 Arguments args(args_length, args_object); \
282 static Type __RT_impl_##Name(Arguments args, Isolate* isolate)