Searched defs:kArgc (Results 1 - 5 of 5) sorted by relevance

/external/v8/src/
H A Dd8-debug.cc130 static const int kArgc = 1; local
131 Handle<Value> args[kArgc];
139 Handle<Value> response_val = fun->Call(cmd_processor, kArgc, args);
H A Dd8.cc587 static const int kArgc = 3; local
588 Handle<Value> argv[kArgc] = { evaluation_context_->Global(), text, full };
589 Handle<Value> val = Handle<Function>::Cast(fun)->Call(global, kArgc, argv);
599 static const int kArgc = 1; local
600 Handle<Value> argv[kArgc] = { message };
601 Handle<Value> val = Handle<Function>::Cast(fun)->Call(global, kArgc, argv);
610 static const int kArgc = 1; local
611 Handle<Value> argv[kArgc] = { command };
612 Handle<Value> val = Handle<Function>::Cast(fun)->Call(global, kArgc, argv);
H A Ddebug.cc2865 static const int kArgc = 1; local
2866 v8::Handle<Value> argv[kArgc] = { running };
2867 cmd_processor = v8::Object::Cast(*fun->Call(api_exec_state, kArgc, argv));
2911 static const int kArgc = 1; local
2912 v8::Handle<Value> argv[kArgc] = { request };
2913 v8::Local<v8::Value> response_val = fun->Call(cmd_processor, kArgc, argv);
2934 static const int kArgc = 1; local
2935 v8::Handle<Value> argv[kArgc] = { response };
2936 v8::Local<v8::Value> running_val = fun->Call(cmd_processor, kArgc, argv);
H A Dapi.cc5737 const int kArgc = 1; local
5738 v8::Handle<v8::Value> argv[kArgc] = { obj };
5741 kArgc,
/external/v8/test/cctest/
H A Dtest-debug.cc790 static const int kArgc = 1; local
791 v8::Handle<v8::Value> argv[kArgc] = { exec_state };
793 v8::Handle<v8::Value> result = frame_count->Call(exec_state, kArgc, argv);
994 static const int kArgc = 1; local
995 v8::Handle<v8::Value> argv[kArgc] = { exec_state };
998 frame_count->Call(exec_state, kArgc, argv);
2737 const int kArgc = 1; local
2738 v8::Handle<v8::Value> args[kArgc] = { a };
2739 foo->Call(env->Global(), kArgc, args);
2745 foo->Call(env->Global(), kArgc, arg
2784 const int kArgc = 1; local
[all...]

Completed in 117 milliseconds