Home
last modified time | relevance | path

Searched refs:ScheduledAction (Results 1 – 25 of 35) sorted by relevance

12

/external/webkit/Source/WebCore/bindings/js/
DScheduledAction.cpp50 PassOwnPtr<ScheduledAction> ScheduledAction::create(ExecState* exec, DOMWrapperWorld* isolatedWorld… in create()
60 return new ScheduledAction(ustringToString(string), isolatedWorld); in create()
63 return new ScheduledAction(exec, v, isolatedWorld); in create()
66 ScheduledAction::ScheduledAction(ExecState* exec, JSValue function, DOMWrapperWorld* isolatedWorld) in ScheduledAction() function in WebCore::ScheduledAction
76 void ScheduledAction::execute(ScriptExecutionContext* context) in execute()
90 void ScheduledAction::executeFunctionInContext(JSGlobalObject* globalObject, JSValue thisValue, Scr… in executeFunctionInContext()
118 void ScheduledAction::execute(Document* document) in execute()
140 void ScheduledAction::execute(WorkerContext* workerContext) in execute()
DScheduledAction.h45 class ScheduledAction {
46 WTF_MAKE_NONCOPYABLE(ScheduledAction); WTF_MAKE_FAST_ALLOCATED;
48 …static PassOwnPtr<ScheduledAction> create(JSC::ExecState*, DOMWrapperWorld* isolatedWorld, Content…
53 ScheduledAction(JSC::ExecState*, JSC::JSValue function, DOMWrapperWorld* isolatedWorld);
54 ScheduledAction(const String& code, DOMWrapperWorld* isolatedWorld) in ScheduledAction() function
DJSWorkerContextCustom.cpp126 OwnPtr<ScheduledAction> action = ScheduledAction::create(exec, currentWorld(exec), 0); in setTimeout()
136 OwnPtr<ScheduledAction> action = ScheduledAction::create(exec, currentWorld(exec), 0); in setInterval()
DJSDOMWindowCustom.cpp742 …OwnPtr<ScheduledAction> action = ScheduledAction::create(exec, currentWorld(exec), contentSecurity… in setTimeout()
761 …OwnPtr<ScheduledAction> action = ScheduledAction::create(exec, currentWorld(exec), contentSecurity… in setInterval()
/external/webkit/Source/WebCore/bindings/v8/
DScheduledAction.cpp46 ScheduledAction::ScheduledAction(v8::Handle<v8::Context> context, v8::Handle<v8::Function> func, in… in ScheduledAction() function in WebCore::ScheduledAction
70 ScheduledAction::~ScheduledAction() in ~ScheduledAction()
91 void ScheduledAction::execute(ScriptExecutionContext* context) in execute()
104 void ScheduledAction::execute(V8Proxy* proxy) in execute()
128 void ScheduledAction::execute(WorkerContext* workerContext) in execute()
DScheduledAction.h47 class ScheduledAction {
49ScheduledAction(v8::Handle<v8::Context>, v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value>…
50 …explicit ScheduledAction(v8::Handle<v8::Context> context, const WTF::String& code, const KURL& url…
58 virtual ~ScheduledAction();
/external/webkit/Source/WebCore/page/
DDOMTimer.h45 …static int install(ScriptExecutionContext*, PassOwnPtr<ScheduledAction>, int timeout, bool singleS…
58 … DOMTimer(ScriptExecutionContext*, PassOwnPtr<ScheduledAction>, int interval, bool singleShot);
70 OwnPtr<ScheduledAction> m_action;
DDOMTimer.cpp65 DOMTimer::DOMTimer(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interva… in DOMTimer()
88 int DOMTimer::install(ScriptExecutionContext* context, PassOwnPtr<ScheduledAction> action, int time… in install()
143 OwnPtr<ScheduledAction> action = m_action.release(); in fired()
DDOMWindow.h63 class ScheduledAction; variable
245 int setTimeout(PassOwnPtr<ScheduledAction>, int timeout, ExceptionCode&);
247 int setInterval(PassOwnPtr<ScheduledAction>, int timeout, ExceptionCode&);
DDOMWindow.cpp1483 int DOMWindow::setTimeout(PassOwnPtr<ScheduledAction> action, int timeout, ExceptionCode& ec) in setTimeout()
1501 int DOMWindow::setInterval(PassOwnPtr<ScheduledAction> action, int timeout, ExceptionCode& ec) in setInterval()
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8WorkerContextCustom.cpp69 …timerId = DOMTimer::install(workerContext, new ScheduledAction(v8Context, stringFunction, workerCo… in SetTimeoutOrInterval()
79ScheduledAction* action = new ScheduledAction(v8Context, v8::Handle<v8::Function>::Cast(function),… in SetTimeoutOrInterval()
DV8DOMWindowCustom.cpp129ScheduledAction* action = new ScheduledAction(V8Proxy::context(imp->frame()), v8::Handle<v8::Funct… in WindowSetTimeoutImpl()
137 …id = DOMTimer::install(scriptContext, new ScheduledAction(V8Proxy::context(imp->frame()), function… in WindowSetTimeoutImpl()
/external/webkit/Source/WebCore/workers/
DWorkerContext.h58 class ScheduledAction; variable
101 int setTimeout(PassOwnPtr<ScheduledAction>, int timeout);
103 int setInterval(PassOwnPtr<ScheduledAction>, int timeout);
DWorkerContext.cpp212 int WorkerContext::setTimeout(PassOwnPtr<ScheduledAction> action, int timeout) in setTimeout()
222 int WorkerContext::setInterval(PassOwnPtr<ScheduledAction> action, int timeout) in setInterval()
/external/webkit/Source/WebCore/
DUseJSC.cmake145 bindings/js/ScheduledAction.cpp
DAndroid.v8bindings.mk56 bindings/v8/ScheduledAction.cpp \
DWebCore.pro97 bindings/v8/ScheduledAction.cpp \
351 bindings/js/ScheduledAction.cpp \
1241 bindings/v8/ScheduledAction.h \
1326 bindings/js/ScheduledAction.h \
DChangeLog-2009-06-165072 * bindings/v8/ScheduledAction.cpp:
5073 (WebCore::ScheduledAction::execute):
5839 Remove extra qualifiers from the ScheduledAction decl.
5841 * bindings/v8/ScheduledAction.h: Removed extraneous class qualifiers.
6290 * bindings/v8/ScheduledAction.cpp:
6291 …(WebCore::ScheduledAction::execute): Added function which can execute a callback using WorkerConte…
6292 * bindings/v8/ScheduledAction.h:
6293 … (WebCore::ScheduledAction::ScheduledAction): added url parameter to capture the worker's location.
6295 …e::SetTimeoutOrInterval): replaced NotImplemented with code to create ScheduledAction and DOMTimer.
14149 * bindings/js/ScheduledAction.cpp:
[all …]
DChangeLog-2010-05-241991 * bindings/js/ScheduledAction.cpp:
1992 (WebCore::ScheduledAction::executeFunctionInContext):
1993 (WebCore::ScheduledAction::execute):
1994 * bindings/js/ScheduledAction.h:
2666 * bindings/js/ScheduledAction.cpp:
2667 (WebCore::ScheduledAction::executeFunctionInContext):
2668 (WebCore::ScheduledAction::execute):
2669 * bindings/js/ScheduledAction.h:
2993 * bindings/js/ScheduledAction.cpp:
2994 (WebCore::ScheduledAction::executeFunctionInContext):
[all …]
DChangeLog-2010-01-2912979 * bindings/js/ScheduledAction.cpp:
12980 (WebCore::ScheduledAction::execute):
19986 class ScheduledAction - bindings/js/ScheduledAction.cpp:58
19989 * bindings/js/ScheduledAction.h:
27131 * bindings/js/ScheduledAction.cpp:
27132 (WebCore::ScheduledAction::executeFunctionInContext):
32991 * bindings/js/ScheduledAction.cpp:
32992 (WebCore::ScheduledAction::execute): Updated for function rename.
42811 * bindings/js/ScheduledAction.cpp:
42812 (WebCore::ScheduledAction::create):
[all …]
DChangeLog-2008-08-101598 * bindings/js/ScheduledAction.cpp:
1599 (WebCore::ScheduledAction::execute):
3831 * bindings/js/ScheduledAction.cpp:
3832 (WebCore::ScheduledAction::execute):
4438 * bindings/js/ScheduledAction.cpp:
4439 (WebCore::ScheduledAction::ScheduledAction):
7206 * bindings/js/ScheduledAction.cpp:
7207 (WebCore::ScheduledAction::execute):
9068 * bindings/js/ScheduledAction.cpp:
9069 (WebCore::ScheduledAction::ScheduledAction):
[all …]
DWebCore.gypi1875 'bindings/js/ScheduledAction.cpp',
1876 'bindings/js/ScheduledAction.h',
1959 'bindings/v8/ScheduledAction.cpp',
1960 'bindings/v8/ScheduledAction.h',
DGNUmakefile.list.am821 Source/WebCore/bindings/js/ScheduledAction.cpp \
822 Source/WebCore/bindings/js/ScheduledAction.h \
DGNUmakefile.am887 Source/WebCore/bindings/js/ScheduledAction.cpp \
888 Source/WebCore/bindings/js/ScheduledAction.h \
DChangeLog-2002-12-032305 (ScheduledAction::execute): Note that we're in a timer callback.
15260 (ScheduledAction::ScheduledAction), (ScheduledAction::execute),
15261 (ScheduledAction::~ScheduledAction), (WindowQObject::WindowQObject),

12