Lines Matching full:frame_count
630 "function frame_count(exec_state) {"
633 v8::Handle<v8::Function> frame_count;
787 // Collect the JavsScript stack height if the function frame_count is
789 if (!frame_count.IsEmpty()) {
793 v8::Handle<v8::Value> result = frame_count->Call(exec_state, kArgc, argv);
991 // Collect the JavsScript stack height if the function frame_count is
993 if (!frame_count.IsEmpty()) {
998 frame_count->Call(exec_state, kArgc, argv);
3895 frame_count = CompileFunction(&env, frame_count_source, "frame_count");
5367 CHECK(v8::Debug::Call(frame_count)->IsNumber());
5369 v8::Debug::Call(frame_count)->Int32Value());
5430 frame_count = v8::Local<v8::Function>::Cast(
5431 context->Global()->Get(v8::String::New("frame_count")));
5450 CHECK_EQ(v8::Integer::New(0), v8::Debug::Call(frame_count));
7253 frame_count = CompileFunction(&env, frame_count_source, "frame_count");
7310 int frame_count = result->Int32Value();
7311 CHECK_EQ(expected_frame_count, frame_count);
7313 for (int i = 0; i < frame_count; i++) {