Home | History | Annotate | Download | only in SkV8Example

Lines Matching full:handle

37     v8::Handle<v8::Message> message = tryCatch->Message();
117 v8::Handle<v8::Function> timeoutFn = v8::Handle<v8::Function>::Cast(args[0]);
135 // Create a handle scope to keep the temporary object references.
156 v8::Handle<v8::Value> result = onTimeout->Call(context->Global(), argc, NULL);
159 // Handle any exceptions or output.
178 v8::Handle<v8::Context> Global::createRootContext() {
180 v8::Handle<v8::ObjectTemplate> global = v8::ObjectTemplate::New();
194 // Create a stack-allocated handle scope.
198 v8::Handle<v8::Context> context = this->createRootContext();
212 // Create a stack-allocated handle scope.
216 v8::Handle<v8::Context> context = this->getContext();
224 v8::Handle<v8::String> source = v8::String::NewFromUtf8(fIsolate, script);
225 v8::Handle<v8::Script> compiledScript = v8::Script::Compile(source);
234 v8::Handle<v8::Value> result = compiledScript->Run();
236 // Handle any exceptions or output.