Home
last modified time | relevance | path

Searched refs:fIsolate (Results 1 – 2 of 2) sorted by relevance

/external/skia/experimental/SkV8Example/
DGlobal.cpp34 v8::HandleScope handleScope(fIsolate); in reportException()
122 gGlobal->fTimeouts[id].Reset(gGlobal->fIsolate, timeoutFn); in SetTimeout()
130 args.GetReturnValue().Set(v8::Integer::New(gGlobal->fIsolate, id)); in SetTimeout()
182 global->Set(v8::String::NewFromUtf8(fIsolate, "print"), in createRootContext()
183 v8::FunctionTemplate::New(fIsolate, Global::Print)); in createRootContext()
184 global->Set(v8::String::NewFromUtf8(fIsolate, "setTimeout"), in createRootContext()
185 v8::FunctionTemplate::New(fIsolate, Global::SetTimeout)); in createRootContext()
186 global->Set(v8::String::NewFromUtf8(fIsolate, "inval"), in createRootContext()
187 v8::FunctionTemplate::New(fIsolate, Global::Inval)); in createRootContext()
190 return v8::Context::New(fIsolate, NULL, global); in createRootContext()
[all …]
DGlobal.h30 : fIsolate(isolate) in Global()
43 return v8::Local<v8::Context>::New(fIsolate, fContext); in getContext()
47 return fIsolate; in getIsolate()
73 v8::Isolate* fIsolate; variable