Home
last modified time | relevance | path

Searched refs:DefaultPlatform (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/v8/src/libplatform/
Ddefault-platform.cc20 DefaultPlatform* platform = new DefaultPlatform(); in CreateDefaultPlatform()
28 return reinterpret_cast<DefaultPlatform*>(platform)->PumpMessageLoop(isolate); in PumpMessageLoop()
32 const int DefaultPlatform::kMaxThreadPoolSize = 4;
35 DefaultPlatform::DefaultPlatform() in DefaultPlatform() function in v8::platform::DefaultPlatform
39 DefaultPlatform::~DefaultPlatform() { in ~DefaultPlatform()
59 void DefaultPlatform::SetThreadPoolSize(int thread_pool_size) { in SetThreadPoolSize()
70 void DefaultPlatform::EnsureInitialized() { in EnsureInitialized()
80 bool DefaultPlatform::PumpMessageLoop(v8::Isolate* isolate) { in PumpMessageLoop()
97 void DefaultPlatform::CallOnBackgroundThread(Task *task, in CallOnBackgroundThread()
104 void DefaultPlatform::CallOnForegroundThread(v8::Isolate* isolate, Task* task) { in CallOnForegroundThread()
Ddefault-platform.h24 class DefaultPlatform : public Platform {
26 DefaultPlatform();
27 virtual ~DefaultPlatform();
51 DISALLOW_COPY_AND_ASSIGN(DefaultPlatform);
Ddefault-platform-unittest.cc31 DefaultPlatform platform; in TEST()