Home | History | Annotate | Download | only in src

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) { }
56 // Get the total number of arguments including the receiver.
59 Object** arguments() { return arguments_; }
67 // For each type of callback, we have a list of arguments
111 // Custom arguments replicate a small segment of stack that can be
112 // accessed through an Arguments object the same way the actual stack
287 static INLINE(Type __RT_impl_##Name(Arguments args, Isolate* isolate)); \
290 Arguments args(args_length, args_object); \
293 static Type __RT_impl_##Name(Arguments args, Isolate* isolate)
301 args.length(), args.arguments(), isolate