Lines Matching defs:Arguments
36 // Arguments provides access to runtime call parameters.
38 // It uses the fact that the instance fields of Arguments
44 // Object* Runtime_function(Arguments args) {
48 class Arguments BASE_EMBEDDED {
50 Arguments(int length, Object** arguments)
51 : length_(length), arguments_(arguments) { }
74 // Get the total number of arguments including the receiver.
77 Object** arguments() { return arguments_; }
85 // Custom arguments replicate a small segment of stack that can be
86 // accessed through an Arguments object the same way the actual stack
115 Type Name(Arguments args, Isolate* isolate)
119 Type Name(Arguments args, Isolate* isolate)