Home
last modified time | relevance | path

Searched refs:kArgc (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/v8/src/
Dd8-debug.cc98 static const int kArgc = 1; in HandleDebugEvent() local
99 Handle<Value> args[kArgc]; in HandleDebugEvent()
107 Handle<Value> response_val = fun->Call(cmd_processor, kArgc, args); in HandleDebugEvent()
Dd8.cc647 static const int kArgc = 3; in GetCompletions() local
650 Handle<Value> argv[kArgc] = { evaluation_context->Global(), text, full }; in GetCompletions()
651 Local<Value> val = Local<Function>::Cast(fun)->Call(global, kArgc, argv); in GetCompletions()
665 static const int kArgc = 1; in DebugMessageDetails() local
666 Handle<Value> argv[kArgc] = { message }; in DebugMessageDetails()
667 Handle<Value> val = Handle<Function>::Cast(fun)->Call(global, kArgc, argv); in DebugMessageDetails()
681 static const int kArgc = 1; in DebugCommandToJSONRequest() local
682 Handle<Value> argv[kArgc] = { command }; in DebugCommandToJSONRequest()
683 Handle<Value> val = Handle<Function>::Cast(fun)->Call(global, kArgc, argv); in DebugCommandToJSONRequest()
Dapi.cc6987 const int kArgc = 1; in GetMirror() local
6988 v8::Handle<v8::Value> argv[kArgc] = { obj }; in GetMirror()
6989 result = v8_fun->Call(Utils::ToLocal(debug), kArgc, argv); in GetMirror()
/external/chromium_org/v8/test/cctest/
Dtest-debug.cc717 static const int kArgc = 1; in DebugEventCounter() local
718 v8::Handle<v8::Value> argv[kArgc] = { exec_state }; in DebugEventCounter()
720 v8::Handle<v8::Value> result = frame_count->Call(exec_state, kArgc, argv); in DebugEventCounter()
933 static const int kArgc = 1; in DebugEventBreakMax() local
934 v8::Handle<v8::Value> argv[kArgc] = { exec_state }; in DebugEventBreakMax()
937 frame_count->Call(exec_state, kArgc, argv); in DebugEventBreakMax()
2852 const int kArgc = 1; in TEST() local
2853 v8::Handle<v8::Value> args[kArgc] = { a }; in TEST()
2854 foo->Call(env->Global(), kArgc, args); in TEST()
2860 foo->Call(env->Global(), kArgc, args); in TEST()
[all …]