OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:V8LazyEventListener
(Results
1 - 10
of
10
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8LazyEventListener.h
47
//
V8LazyEventListener
is a wrapper for a JavaScript code string that is compiled and evaluated when an event is fired.
48
// A
V8LazyEventListener
is either a HTML or SVG event handler.
49
class
V8LazyEventListener
: public V8AbstractEventListener {
51
static PassRefPtr<
V8LazyEventListener
> create(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String& sourceURL, const TextPosition& position, Node* node, v8::Isolate* isolate)
53
return adoptRef(new
V8LazyEventListener
(functionName, eventParameterName, code, sourceURL, position, node, isolate));
62
V8LazyEventListener
(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition&, Node*, v8::Isolate*);
ScriptEventListener.h
35
#include "bindings/v8/
V8LazyEventListener
.h"
47
PassRefPtr<
V8LazyEventListener
> createAttributeEventListener(Node*, const QualifiedName&, const AtomicString& value);
48
PassRefPtr<
V8LazyEventListener
> createAttributeEventListener(Frame*, const QualifiedName&, const AtomicString& value);
ScriptEventListener.cpp
54
PassRefPtr<
V8LazyEventListener
> createAttributeEventListener(Node* node, const QualifiedName& name, const AtomicString& value)
76
return
V8LazyEventListener
::create(name.localName(), eventParameterName(node->isSVGElement()), value, sourceURL, position, node, isolate);
79
PassRefPtr<
V8LazyEventListener
> createAttributeEventListener(Frame* frame, const QualifiedName& name, const AtomicString& value)
94
return
V8LazyEventListener
::create(name.localName(), eventParameterName(frame->document()->isSVGDocument()), value, sourceURL, position, 0, toIsolate(frame));
V8LazyEventListener.cpp
32
#include "bindings/v8/
V8LazyEventListener
.h"
55
V8LazyEventListener
::
V8LazyEventListener
(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition& position, Node* node, v8::Isolate* isolate)
77
v8::Local<v8::Value>
V8LazyEventListener
::callListenerFunction(ExecutionContext* context, v8::Handle<v8::Value> jsEvent, Event* event)
111
void
V8LazyEventListener
::prepareListenerObject(ExecutionContext* context)
/external/chromium_org/third_party/WebKit/Source/core/
webcore_derived.target.darwin-arm.mk
245
third_party/WebKit/Source/bindings/v8/
V8LazyEventListener
.cpp \
webcore_derived.target.darwin-mips.mk
245
third_party/WebKit/Source/bindings/v8/
V8LazyEventListener
.cpp \
webcore_derived.target.darwin-x86.mk
245
third_party/WebKit/Source/bindings/v8/
V8LazyEventListener
.cpp \
webcore_derived.target.linux-arm.mk
245
third_party/WebKit/Source/bindings/v8/
V8LazyEventListener
.cpp \
webcore_derived.target.linux-mips.mk
245
third_party/WebKit/Source/bindings/v8/
V8LazyEventListener
.cpp \
webcore_derived.target.linux-x86.mk
245
third_party/WebKit/Source/bindings/v8/
V8LazyEventListener
.cpp \
Completed in 494 milliseconds