OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScheduledAction
(Results
1 - 16
of
16
) sorted by null
/external/webkit/Source/WebCore/page/
DOMTimer.h
30
#include "
ScheduledAction
.h"
45
static int install(ScriptExecutionContext*, PassOwnPtr<
ScheduledAction
>, int timeout, bool singleShot);
58
DOMTimer(ScriptExecutionContext*, PassOwnPtr<
ScheduledAction
>, int interval, bool singleShot);
70
OwnPtr<
ScheduledAction
> m_action;
DOMTimer.cpp
31
#include "
ScheduledAction
.h"
65
DOMTimer::DOMTimer(ScriptExecutionContext* context, PassOwnPtr<
ScheduledAction
> action, int interval, bool singleShot)
88
int DOMTimer::install(ScriptExecutionContext* context, PassOwnPtr<
ScheduledAction
> action, int timeout, bool singleShot)
143
OwnPtr<
ScheduledAction
> action = m_action.release();
164
// Need to release JS objects potentially protected by
ScheduledAction
DOMWindow.h
63
class
ScheduledAction
;
245
int setTimeout(PassOwnPtr<
ScheduledAction
>, int timeout, ExceptionCode&);
247
int setInterval(PassOwnPtr<
ScheduledAction
>, int timeout, ExceptionCode&);
DOMWindow.cpp
[
all
...]
/external/webkit/Source/WebCore/bindings/v8/
ScheduledAction.h
47
class
ScheduledAction
{
49
ScheduledAction
(v8::Handle<v8::Context>, v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[]);
50
explicit
ScheduledAction
(v8::Handle<v8::Context> context, const WTF::String& code, const KURL& url = KURL())
58
virtual ~
ScheduledAction
();
76
#endif //
ScheduledAction
ScheduledAction.cpp
32
#include "
ScheduledAction
.h"
46
ScheduledAction
::
ScheduledAction
(v8::Handle<v8::Context> context, v8::Handle<v8::Function> func, int argc, v8::Handle<v8::Value> argv[])
70
ScheduledAction
::~
ScheduledAction
()
91
void
ScheduledAction
::execute(ScriptExecutionContext* context)
104
void
ScheduledAction
::execute(V8Proxy* proxy)
128
void
ScheduledAction
::execute(WorkerContext* workerContext)
/external/webkit/Source/WebCore/bindings/js/
ScheduledAction.h
45
class
ScheduledAction
{
46
WTF_MAKE_NONCOPYABLE(
ScheduledAction
); WTF_MAKE_FAST_ALLOCATED;
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)
ScheduledAction.cpp
25
#include "
ScheduledAction
.h"
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)
76
void
ScheduledAction
::execute(ScriptExecutionContext* context)
90
void
ScheduledAction
::executeFunctionInContext(JSGlobalObject* globalObject, JSValue thisValue, ScriptExecutionContext* context)
118
void
ScheduledAction
::execute(Document* document
[
all
...]
JSWorkerContextCustom.cpp
42
#include "
ScheduledAction
.h"
126
OwnPtr<
ScheduledAction
> action =
ScheduledAction
::create(exec, currentWorld(exec), 0);
136
OwnPtr<
ScheduledAction
> action =
ScheduledAction
::create(exec, currentWorld(exec), 0);
JSDOMWindowCustom.cpp
54
#include "
ScheduledAction
.h"
736
OwnPtr<
ScheduledAction
> action =
ScheduledAction
::create(exec, currentWorld(exec), contentSecurityPolicy);
755
OwnPtr<
ScheduledAction
> action =
ScheduledAction
::create(exec, currentWorld(exec), contentSecurityPolicy);
/external/webkit/Source/WebCore/bindings/v8/custom/
V8WorkerContextCustom.cpp
38
#include "
ScheduledAction
.h"
69
timerId = DOMTimer::install(workerContext, new
ScheduledAction
(v8Context, stringFunction, workerContext->url()), timeout, singleShot);
78
//
ScheduledAction
takes ownership of actual params and releases them in its destructor.
79
ScheduledAction
* action = new
ScheduledAction
(v8Context, v8::Handle<v8::Function>::Cast(function), paramCount, params);
V8DOMWindowCustom.cpp
47
#include "
ScheduledAction
.h"
129
ScheduledAction
* action = new
ScheduledAction
(V8Proxy::context(imp->frame()), v8::Handle<v8::Function>::Cast(function), paramCount, params);
137
id = DOMTimer::install(scriptContext, new
ScheduledAction
(V8Proxy::context(imp->frame()), functionString), timeout, singleShot);
/external/webkit/Source/WebCore/workers/
WorkerContext.h
58
class
ScheduledAction
;
101
int setTimeout(PassOwnPtr<
ScheduledAction
>, int timeout);
103
int setInterval(PassOwnPtr<
ScheduledAction
>, int timeout);
WorkerContext.cpp
212
int WorkerContext::setTimeout(PassOwnPtr<
ScheduledAction
> action, int timeout)
222
int WorkerContext::setInterval(PassOwnPtr<
ScheduledAction
> action, int timeout)
/external/webkit/Source/WebCore/
Android.jscbindings.mk
199
bindings/js/
ScheduledAction
.cpp \
Android.v8bindings.mk
56
bindings/v8/
ScheduledAction
.cpp \
Completed in 119 milliseconds