Home | History | Annotate | Download | only in v8

Lines Matching refs:Local

46 V8ErrorHandler::V8ErrorHandler(v8::Local<v8::Object> listener, bool isInline, ScriptState* scriptState)
51 v8::Local<v8::Value> V8ErrorHandler::callListenerFunction(v8::Handle<v8::Value> jsEvent, Event* event)
61 v8::Local<v8::Object> listener = getListenerObject(scriptState()->executionContext());
62 v8::Local<v8::Value> returnValue;
64 v8::Local<v8::Function> callFunction = v8::Local<v8::Function>::Cast(listener);
65 v8::Local<v8::Object> thisValue = scriptState()->context()->Global();
67 v8::Local<v8::Value> error = V8HiddenValue::getHiddenValue(isolate(), jsEvent->ToObject(), V8HiddenValue::error(isolate()));
85 v8::Local<v8::Value> wrappedEvent = toV8(event, creationContext, isolate);
88 V8HiddenValue::setHiddenValue(isolate, v8::Local<v8::Object>::Cast(wrappedEvent), V8HiddenValue::error(isolate), data);
92 bool V8ErrorHandler::shouldPreventDefault(v8::Local<v8::Value> returnValue)