OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:V8EventListener
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/WebCore/bindings/v8/
V8EventListener.h
43
//
V8EventListener
is a wrapper of a JS object implements EventListener interface (has handleEvent(event) method), or a JS function
45
class
V8EventListener
: public V8AbstractEventListener {
47
static PassRefPtr<
V8EventListener
> create(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
49
return adoptRef(new
V8EventListener
(listener, isAttribute, worldContext));
53
V8EventListener
(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext);
V8EventListener.cpp
32
#include "
V8EventListener
.h"
38
V8EventListener
::
V8EventListener
(v8::Local<v8::Object> listener, bool isAttribute, const WorldContextHandle& worldContext)
44
v8::Local<v8::Function>
V8EventListener
::getListenerFunction(ScriptExecutionContext* context)
66
v8::Local<v8::Value>
V8EventListener
::callListenerFunction(ScriptExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
V8EventListenerList.h
34
#include "
V8EventListener
.h"
43
// This is a container for
V8EventListener
objects that uses hidden properties of v8::Object to speed up lookups.
46
static PassRefPtr<
V8EventListener
> findWrapper(v8::Local<v8::Value> value, bool isAttribute)
57
static PassRefPtr<
V8EventListener
> findOrCreateWrapper(v8::Local<v8::Value>, bool isAttribute);
66
static
V8EventListener
* doFindWrapper(v8::Local<v8::Object> object, v8::Handle<v8::String> wrapperProperty)
73
return static_cast<
V8EventListener
*>(v8::External::Unwrap(listener));
83
PassRefPtr<
V8EventListener
> V8EventListenerList::findOrCreateWrapper(v8::Local<v8::Value> value, bool isAttribute)
92
V8EventListener
* wrapper = doFindWrapper(object, wrapperProperty);
96
PassRefPtr<
V8EventListener
> wrapperPtr = WrapperType::create(object, isAttribute, WorldContextHandle(UseCurrentWorld));
V8WindowErrorHandler.h
34
#include "
V8EventListener
.h"
40
class V8WindowErrorHandler : public
V8EventListener
{
V8WindowErrorHandler.cpp
41
:
V8EventListener
(listener, isInline, worldContext)
48
return
V8EventListener
::callListenerFunction(context, jsEvent, event);
V8WorkerContextEventListener.h
36
#include "
V8EventListener
.h"
45
class V8WorkerContextEventListener : public
V8EventListener
{
V8WorkerContextEventListener.cpp
53
:
V8EventListener
(listener, isInline, worldContext)
V8Proxy.h
62
class
V8EventListener
;
V8DOMWrapper.cpp
47
#include "
V8EventListener
.h"
467
return V8EventListenerList::findOrCreateWrapper<
V8EventListener
>(value, isAttribute);
/external/webkit/Source/WebCore/
Android.v8bindings.mk
78
bindings/v8/
V8EventListener
.cpp \
Completed in 143 milliseconds