Home | History | Annotate | Download | only in v8

Lines Matching refs:Local

74     return v8::Local<v8::Object>::New(scriptState->isolate(), value.As<v8::Object>());
77 v8::Local<v8::Value> V8LazyEventListener::callListenerFunction(v8::Handle<v8::Value> jsEvent, Event* event)
79 v8::Local<v8::Object> listenerObject = getListenerObject(scriptState()->executionContext());
81 return v8::Local<v8::Value>();
83 v8::Local<v8::Function> handlerFunction = listenerObject.As<v8::Function>();
84 v8::Local<v8::Object> receiver = getReceiverObject(event);
86 return v8::Local<v8::Value>();
89 return v8::Local<v8::Value>();
93 return v8::Local<v8::Value>();
96 return v8::Local<v8::Value>();
112 v8::Local<v8::Context> v8Context = toV8Context(context, world());
125 v8::Local<v8::Context> v8Context = toV8Context(context, world());
171 v8::Local<v8::Value> result = V8ScriptRunner::compileAndRunInternalScript(codeExternalString, isolate(), m_sourceURL, m_position);
177 v8::Local<v8::Function> intermediateFunction = result.As<v8::Function>();
187 v8::Local<v8::Object> thisObject = v8::Object::New(isolate());
198 v8::Local<v8::Value> innerValue = V8ScriptRunner::callInternalFunction(intermediateFunction, thisObject, 0, 0, isolate());
202 v8::Local<v8::Function> wrappedFunction = innerValue.As<v8::Function>();
212 v8::Local<v8::Function> toStringFunction = v8::Function::New(isolate(), V8LazyEventListenerToString);