HomeSort by relevance Sort by last modified time
    Searched refs:ScheduledAction (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMWindowTimers.h 41 class ScheduledAction;
44 int setTimeout(EventTarget*, PassOwnPtr<ScheduledAction>, int timeout);
45 int setInterval(EventTarget*, PassOwnPtr<ScheduledAction>, int timeout);
DOMTimer.h 30 #include "bindings/v8/ScheduledAction.h"
44 static int install(ExecutionContext*, PassOwnPtr<ScheduledAction>, int timeout, bool singleShot);
63 static PassOwnPtr<DOMTimer> create(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot, int timeoutID)
68 DOMTimer(ExecutionContext*, PassOwnPtr<ScheduledAction>, int interval, bool singleShot, int timeoutID);
76 OwnPtr<ScheduledAction> m_action;
DOMWindowTimers.cpp 43 int setTimeout(EventTarget* eventTarget, PassOwnPtr<ScheduledAction> action, int timeout)
48 int setInterval(EventTarget* eventTarget, PassOwnPtr<ScheduledAction> action, int timeout)
DOMTimer.cpp 70 int DOMTimer::install(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot)
83 DOMTimer::DOMTimer(ExecutionContext* context, PassOwnPtr<ScheduledAction> action, int interval, bool singleShot, int timeoutID)
138 OwnPtr<ScheduledAction> action = m_action.release();
158 // Need to release JS objects potentially protected by ScheduledAction
DOMWindow.h 72 class ScheduledAction;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScheduledAction.h 47 class ScheduledAction {
48 WTF_MAKE_NONCOPYABLE(ScheduledAction);
50 ScheduledAction(v8::Handle<v8::Context>, v8::Handle<v8::Function>, int argc, v8::Handle<v8::Value> argv[], v8::Isolate*);
51 ScheduledAction(v8::Handle<v8::Context>, const String&, const KURL&, v8::Isolate*);
52 ~ScheduledAction();
70 #endif // ScheduledAction
ScheduledAction.cpp 32 #include "bindings/v8/ScheduledAction.h"
48 ScheduledAction::ScheduledAction(v8::Handle<v8::Context> context, v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[], v8::Isolate* isolate)
59 ScheduledAction::ScheduledAction(v8::Handle<v8::Context> context, const String& code, const KURL& url, v8::Isolate* isolate)
66 ScheduledAction::~ScheduledAction()
72 void ScheduledAction::execute(ExecutionContext* context)
86 void ScheduledAction::execute(Frame* frame)
94 TRACE_EVENT0("v8", "ScheduledAction::execute")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8WorkerGlobalScopeCustom.cpp 35 #include "bindings/v8/ScheduledAction.h"
64 OwnPtr<ScheduledAction> action;
73 action = adoptPtr(new ScheduledAction(v8Context, toCoreString(function.As<v8::String>()), workerGlobalScope->url(), info.GetIsolate()));
82 // ScheduledAction takes ownership of actual params and releases them in its destructor.
83 action = adoptPtr(new ScheduledAction(v8Context, v8::Handle<v8::Function>::Cast(function), paramCount, params.get(), info.GetIsolate()));
V8WindowCustom.cpp 39 #include "bindings/v8/ScheduledAction.h"
111 OwnPtr<ScheduledAction> action;
125 action = adoptPtr(new ScheduledAction(imp->frame()->script().currentWorldContext(), v8::Handle<v8::Function>::Cast(function), paramCount, params.get(), info.GetIsolate()));
132 action = adoptPtr(new ScheduledAction(imp->frame()->script().currentWorldContext(), functionString, KURL(), info.GetIsolate()));
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ExecutionContext.h 140 int installNewTimeout(PassOwnPtr<ScheduledAction>, int timeout, bool singleShot);
ExecutionContext.cpp 192 int ExecutionContext::installNewTimeout(PassOwnPtr<ScheduledAction> action, int timeout, bool singleShot)
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerGlobalScope.h 53 class ScheduledAction;
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_derived.target.darwin-arm.mk 213 third_party/WebKit/Source/bindings/v8/ScheduledAction.cpp \
webcore_derived.target.darwin-mips.mk 213 third_party/WebKit/Source/bindings/v8/ScheduledAction.cpp \
webcore_derived.target.darwin-x86.mk 213 third_party/WebKit/Source/bindings/v8/ScheduledAction.cpp \
webcore_derived.target.linux-arm.mk 213 third_party/WebKit/Source/bindings/v8/ScheduledAction.cpp \
webcore_derived.target.linux-mips.mk 213 third_party/WebKit/Source/bindings/v8/ScheduledAction.cpp \
webcore_derived.target.linux-x86.mk 213 third_party/WebKit/Source/bindings/v8/ScheduledAction.cpp \

Completed in 305 milliseconds