OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isolatedWorld
(Results
1 - 10
of
10
) sorted by null
/external/webkit/Source/WebCore/bindings/js/
ScheduledAction.h
48
static PassOwnPtr<ScheduledAction> create(JSC::ExecState*, DOMWrapperWorld*
isolatedWorld
, ContentSecurityPolicy*);
53
ScheduledAction(JSC::ExecState*, JSC::JSValue function, DOMWrapperWorld*
isolatedWorld
);
54
ScheduledAction(const String& code, DOMWrapperWorld*
isolatedWorld
)
55
: m_function(*
isolatedWorld
->globalData())
57
, m_isolatedWorld(
isolatedWorld
)
JSErrorHandler.h
40
static PassRefPtr<JSErrorHandler> create(JSC::JSObject* listener, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld*
isolatedWorld
)
42
return adoptRef(new JSErrorHandler(listener, wrapper, isAttribute,
isolatedWorld
));
48
JSErrorHandler(JSC::JSObject* function, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld*
isolatedWorld
);
JSLazyEventListener.h
32
static PassRefPtr<JSLazyEventListener> create(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld*
isolatedWorld
)
34
return adoptRef(new JSLazyEventListener(functionName, eventParameterName, code, node, sourceURL, lineNumber, wrapper,
isolatedWorld
));
39
JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node*, const String& sourceURL, int lineNumber, JSC::JSObject* wrapper, DOMWrapperWorld*
isolatedWorld
);
JSEventListener.h
33
static PassRefPtr<JSEventListener> create(JSC::JSObject* listener, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld*
isolatedWorld
)
35
return adoptRef(new JSEventListener(listener, wrapper, isAttribute,
isolatedWorld
));
53
DOMWrapperWorld*
isolatedWorld
() const { return m_isolatedWorld.get(); }
64
JSEventListener(JSC::JSObject* function, JSC::JSObject* wrapper, bool isAttribute, DOMWrapperWorld*
isolatedWorld
);
JSErrorHandler.cpp
44
JSErrorHandler::JSErrorHandler(JSObject* function, JSObject* wrapper, bool isAttribute, DOMWrapperWorld*
isolatedWorld
)
45
: JSEventListener(function, wrapper, isAttribute,
isolatedWorld
)
70
JSDOMGlobalObject* globalObject = toJSDOMGlobalObject(scriptExecutionContext,
isolatedWorld
());
ScheduledAction.cpp
50
PassOwnPtr<ScheduledAction> ScheduledAction::create(ExecState* exec, DOMWrapperWorld*
isolatedWorld
, ContentSecurityPolicy* policy)
60
return new ScheduledAction(ustringToString(string),
isolatedWorld
);
63
return new ScheduledAction(exec, v,
isolatedWorld
);
66
ScheduledAction::ScheduledAction(ExecState* exec, JSValue function, DOMWrapperWorld*
isolatedWorld
)
68
, m_isolatedWorld(
isolatedWorld
)
JSLazyEventListener.cpp
39
JSLazyEventListener::JSLazyEventListener(const String& functionName, const String& eventParameterName, const String& code, Node* node, const String& sourceURL, int lineNumber, JSObject* wrapper, DOMWrapperWorld*
isolatedWorld
)
40
: JSEventListener(0, wrapper, true,
isolatedWorld
)
90
JSDOMGlobalObject* globalObject = toJSDOMGlobalObject(executionContext,
isolatedWorld
());
JSEventListener.cpp
36
JSEventListener::JSEventListener(JSObject* function, JSObject* wrapper, bool isAttribute, DOMWrapperWorld*
isolatedWorld
)
38
, m_wrapper(*
isolatedWorld
->globalData(), wrapper)
40
, m_isolatedWorld(
isolatedWorld
)
JSDOMWindowShell.cpp
178
JSDOMWindowShell* toJSDOMWindowShell(Frame* frame, DOMWrapperWorld*
isolatedWorld
)
182
return frame->script()->windowShell(
isolatedWorld
);
ScriptEventListener.cpp
105
return ustringToString(jsFunction->toString(scriptStateFromNode(jsListener->
isolatedWorld
(), document)));
Completed in 190 milliseconds