Lines Matching refs:fIsolate
34 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()
195 v8::HandleScope handleScope(fIsolate); in initialize()
201 fContext.Reset(fIsolate, context); in initialize()
213 v8::HandleScope handleScope(fIsolate); in parseScript()
224 v8::Handle<v8::String> source = v8::String::NewFromUtf8(fIsolate, script); in parseScript()