/external/webkit/Source/WebCore/bindings/js/ |
D | ScheduledAction.cpp | 50 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()
|
D | ScheduledAction.h | 45 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
|
D | JSWorkerContextCustom.cpp | 126 OwnPtr<ScheduledAction> action = ScheduledAction::create(exec, currentWorld(exec), 0); in setTimeout() 136 OwnPtr<ScheduledAction> action = ScheduledAction::create(exec, currentWorld(exec), 0); in setInterval()
|
D | JSDOMWindowCustom.cpp | 742 …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/ |
D | ScheduledAction.cpp | 46 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()
|
D | ScheduledAction.h | 47 class ScheduledAction { 49 …ScheduledAction(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/ |
D | DOMTimer.h | 45 …static int install(ScriptExecutionContext*, PassOwnPtr<ScheduledAction>, int timeout, bool singleS… 58 … DOMTimer(ScriptExecutionContext*, PassOwnPtr<ScheduledAction>, int interval, bool singleShot); 70 OwnPtr<ScheduledAction> m_action;
|
D | DOMTimer.cpp | 65 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()
|
D | DOMWindow.h | 63 class ScheduledAction; variable 245 int setTimeout(PassOwnPtr<ScheduledAction>, int timeout, ExceptionCode&); 247 int setInterval(PassOwnPtr<ScheduledAction>, int timeout, ExceptionCode&);
|
D | DOMWindow.cpp | 1483 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/ |
D | V8WorkerContextCustom.cpp | 69 …timerId = DOMTimer::install(workerContext, new ScheduledAction(v8Context, stringFunction, workerCo… in SetTimeoutOrInterval() 79 …ScheduledAction* action = new ScheduledAction(v8Context, v8::Handle<v8::Function>::Cast(function),… in SetTimeoutOrInterval()
|
D | V8DOMWindowCustom.cpp | 129 …ScheduledAction* 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/ |
D | WorkerContext.h | 58 class ScheduledAction; variable 101 int setTimeout(PassOwnPtr<ScheduledAction>, int timeout); 103 int setInterval(PassOwnPtr<ScheduledAction>, int timeout);
|
D | WorkerContext.cpp | 212 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/ |
D | UseJSC.cmake | 145 bindings/js/ScheduledAction.cpp
|
D | Android.v8bindings.mk | 56 bindings/v8/ScheduledAction.cpp \
|
D | WebCore.pro | 97 bindings/v8/ScheduledAction.cpp \ 351 bindings/js/ScheduledAction.cpp \ 1241 bindings/v8/ScheduledAction.h \ 1326 bindings/js/ScheduledAction.h \
|
D | ChangeLog-2009-06-16 | 5072 * 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 …]
|
D | ChangeLog-2010-05-24 | 1991 * 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 …]
|
D | ChangeLog-2010-01-29 | 12979 * 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 …]
|
D | ChangeLog-2008-08-10 | 1598 * 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 …]
|
D | WebCore.gypi | 1875 'bindings/js/ScheduledAction.cpp', 1876 'bindings/js/ScheduledAction.h', 1959 'bindings/v8/ScheduledAction.cpp', 1960 'bindings/v8/ScheduledAction.h',
|
D | GNUmakefile.list.am | 821 Source/WebCore/bindings/js/ScheduledAction.cpp \ 822 Source/WebCore/bindings/js/ScheduledAction.h \
|
D | GNUmakefile.am | 887 Source/WebCore/bindings/js/ScheduledAction.cpp \ 888 Source/WebCore/bindings/js/ScheduledAction.h \
|
D | ChangeLog-2002-12-03 | 2305 (ScheduledAction::execute): Note that we're in a timer callback. 15260 (ScheduledAction::ScheduledAction), (ScheduledAction::execute), 15261 (ScheduledAction::~ScheduledAction), (WindowQObject::WindowQObject),
|