Home | History | Annotate | Download | only in src

Lines Matching defs:Arguments

13 // Arguments provides access to runtime call parameters.
15 // It uses the fact that the instance fields of Arguments
21 // Object* Runtime_function(Arguments args) {
28 class Arguments BASE_EMBEDDED {
30 Arguments(int length, Object** arguments)
31 : length_(length), arguments_(arguments) { }
55 // Get the total number of arguments including the receiver.
58 Object** arguments() { return arguments_; }
66 // For each type of callback, we have a list of arguments
110 // Custom arguments replicate a small segment of stack that can be
111 // accessed through an Arguments object the same way the actual stack
286 static INLINE(Type __RT_impl_##Name(Arguments args, Isolate* isolate)); \
289 Arguments args(args_length, args_object); \
292 static Type __RT_impl_##Name(Arguments args, Isolate* isolate)
300 args.length(), args.arguments(), isolate