Home | History | Annotate | Download | only in v8

Lines Matching refs:Local

40 V8EventListener::V8EventListener(v8::Local<v8::Object> listener, bool isAttribute)
46 v8::Local<v8::Function> V8EventListener::getListenerFunction(ScriptExecutionContext* context)
48 v8::Local<v8::Object> listener = getListenerObject(context);
52 return v8::Local<v8::Function>();
55 return v8::Local<v8::Function>::Cast(listener);
59 v8::Local<v8::Value> property = listener->Get(v8::String::NewSymbol("handleEvent"));
63 return v8::Local<v8::Function>::Cast(property);
66 return v8::Local<v8::Function>();
69 v8::Local<v8::Value> V8EventListener::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
72 v8::Local<v8::Function> handlerFunction = getListenerFunction(context);
73 v8::Local<v8::Object> receiver = getReceiverObject(context, event);
75 return v8::Local<v8::Value>();
79 return v8::Local<v8::Value>();
82 return v8::Local<v8::Value>();
86 return v8::Local<v8::Value>();
89 return v8::Local<v8::Value>();