Lines Matching refs:platform
48 void RunShell(v8::Local<v8::Context> context, v8::Platform* platform);
49 int RunMain(v8::Isolate* isolate, v8::Platform* platform, int argc,
80 v8::Platform* platform = v8::platform::CreateDefaultPlatform();
81 v8::V8::InitializePlatform(platform);
99 result = RunMain(isolate, platform, argc, argv);
100 if (run_shell) RunShell(context, platform);
105 delete platform;
274 int RunMain(v8::Isolate* isolate, v8::Platform* platform, int argc,
299 while (v8::platform::PumpMessageLoop(platform, isolate)) continue;
312 while (v8::platform::PumpMessageLoop(platform, isolate)) continue;
321 void RunShell(v8::Local<v8::Context> context, v8::Platform* platform) {
340 while (v8::platform::PumpMessageLoop(platform, context->GetIsolate()))