Home | History | Annotate | Download | only in src

Lines Matching full:frame

549     JavaScriptFrame* frame = it.frame();
550 if (frame->function() != *function) continue;
553 int index = ScopeInfo<>::StackSlotIndex(frame->code(),
556 Handle<Object> arguments = Handle<Object>(frame->GetExpression(index));
561 // find the frame that holds the actual arguments passed to the
564 frame = it.frame();
567 // mirror for the right frame.
568 const int length = frame->GetProvidedParametersCount();
574 for (int i = 0; i < length; i++) array->set(i, frame->GetParameter(i));
581 // No frame corresponding to the given function found. Return null.
608 if (it.frame()->function() != *function) continue;
609 // Once we have found the frame, we need to go to the caller
610 // frame. This may require skipping through a number of top-level
615 JSFunction* caller = JSFunction::cast(it.frame()->function());
620 // No frame corresponding to the given function found. Return null.