Home | History | Annotate | Download | only in src

Lines Matching refs:functions

602   List<JSFunction*> functions(2);
605 frame->GetFunctions(&functions);
606 for (int i = functions.length() - 1; i >= 0; i--) {
608 if (functions[i] != *function) continue;
611 // The function in question was inlined. Inlined functions have the
649 functions.Rewind(0);
691 List<JSFunction*> functions(2);
694 frame->GetFunctions(&functions);
695 for (int i = functions.length() - 1; i >= 0; i--) {
696 if (functions[i] == *function) {
699 // frames, e.g. frames for scripts not functions.
701 ASSERT(!functions[i - 1]->shared()->is_toplevel());
702 return CheckNonStrictCallerOrThrow(isolate, functions[i - 1]);
706 functions.Rewind(0);
707 frame->GetFunctions(&functions);
708 if (!functions.last()->shared()->is_toplevel()) {
709 return CheckNonStrictCallerOrThrow(isolate, functions.last());
711 ASSERT(functions.length() == 1);
718 functions.Rewind(0);
752 // To be consistent with other Set functions, return the value.