Home
last modified time | relevance | path

Searched refs:runnable (Results 251 – 275 of 9760) sorted by relevance

1...<<11121314151617181920>>...391

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/nearby/src/cpp/platform/impl/g3/
H A Dmulti_thread_executor.h37 void Execute(Runnable&& runnable) override { in Execute() argument
39 thread_pool_.Schedule(std::move(runnable)); in Execute()
42 bool DoSubmit(Runnable&& runnable) override { in DoSubmit() argument
44 thread_pool_.Schedule(std::move(runnable)); in DoSubmit()
55 void ScheduleAfter(absl::Duration delay, Runnable&& runnable) { in ScheduleAfter() argument
57 thread_pool_.ScheduleAt(absl::Now() + delay, std::move(runnable)); in ScheduleAfter()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/nearby/src/cpp/platform/impl/ios/
H A Dmulti_thread_executor.h35 void Execute(Runnable&& runnable) override { in Execute() argument
37 thread_pool_.Schedule(std::move(runnable)); in Execute()
40 bool DoSubmit(Runnable&& runnable) override { in DoSubmit() argument
42 thread_pool_.Schedule(std::move(runnable)); in DoSubmit()
53 void ScheduleAfter(absl::Duration delay, Runnable&& runnable) { in ScheduleAfter() argument
55 thread_pool_.ScheduleAt(absl::Now() + delay, std::move(runnable)); in ScheduleAfter()
/dports/emulators/dolphin-emu/dolphin-3152428/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/utils/
H A DAfterDirectoryInitializationRunner.java25 public void setFinishedCallback(Runnable runnable) in setFinishedCallback() argument
27 mUnregisterCallback = runnable; in setFinishedCallback()
55 public void run(Context context, boolean abortOnFailure, Runnable runnable) in run() argument
60 runnable.run(); in run()
69 runAfterInitialization(context, abortOnFailure, runnable); in run()
73 private void runAfterInitialization(Context context, boolean abortOnFailure, Runnable runnable) in runAfterInitialization() argument
92 runnable.run(); in runAfterInitialization()
/dports/lang/spidermonkey60/firefox-60.9.0/dom/workers/
H A DWorkerRunnable.cpp96 RefPtr<WorkerRunnable> runnable(this); in DispatchInternal() local
102 mWorkerPrivate->DispatchDebuggerRunnable(runnable.forget())); in DispatchInternal()
111 return NS_SUCCEEDED(parent->Dispatch(runnable.forget())); in DispatchInternal()
182 WorkerRunnable* runnable; in FromRunnable() local
189 MOZ_ASSERT(runnable); in FromRunnable()
190 return runnable; in FromRunnable()
427 RefPtr<WorkerSyncRunnable> runnable(this); in DispatchInternal() local
474 RefPtr<MainThreadStopSyncLoopRunnable> runnable(this); in DispatchInternal() local
502 RefPtr<WorkerControlRunnable> runnable(this); in DispatchInternal() local
670 RefPtr<WorkerControlRunnable> runnable = in PostDispatchOnMainThread() local
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/workers/
H A DWorkerRunnable.cpp104 RefPtr<WorkerRunnable> runnable(this); in DispatchInternal() local
111 return NS_SUCCEEDED(mWorkerPrivate->Dispatch(runnable.forget())); in DispatchInternal()
118 return NS_SUCCEEDED(parent->Dispatch(runnable.forget())); in DispatchInternal()
199 WorkerRunnable* runnable; in FromRunnable() local
206 MOZ_ASSERT(runnable); in FromRunnable()
207 return runnable; in FromRunnable()
456 RefPtr<WorkerSyncRunnable> runnable(this); in DispatchInternal() local
512 RefPtr<MainThreadStopSyncLoopRunnable> runnable(this); in DispatchInternal() local
547 RefPtr<WorkerControlRunnable> runnable(this); in DispatchInternal() local
740 RefPtr<WorkerControlRunnable> runnable = in PostDispatchOnMainThread() local
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.jface.tests.databinding.conformance/src/org/eclipse/jface/databinding/conformance/util/
H A DRealmTester.java49 public static void exerciseCurrent(Runnable runnable) { in exerciseCurrent() argument
61 runnable.run(); in exerciseCurrent()
72 runnable.run(); in exerciseCurrent()
89 public static void exerciseCurrent(Runnable runnable, CurrentRealm realm) { in exerciseCurrent() argument
93 runnable.run(); in exerciseCurrent()
101 runnable.run(); in exerciseCurrent()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/main/java/org/springframework/scheduling/concurrent/
H A DScheduledExecutorTask.java41 private Runnable runnable; field in ScheduledExecutorTask
68 this.runnable = executorTask; in ScheduledExecutorTask()
78 this.runnable = executorTask; in ScheduledExecutorTask()
90 this.runnable = executorTask; in ScheduledExecutorTask()
101 this.runnable = executorTask; in setRunnable()
108 return this.runnable; in getRunnable()
/dports/devel/jsl/jsl-0.3.0/src/liveconnect/classes/netscape/javascript/
H A DJSRunnable.java46 private JSObject runnable; field in JSRunnable
48 public JSRunnable(JSObject runnable) { in JSRunnable() argument
49 this.runnable = runnable; in JSRunnable()
61 runnable.call("run", null); in run()
/dports/lang/spidermonkey17/js/src/liveconnect/classes/netscape/javascript/
H A DJSRunnable.java46 private JSObject runnable; field in JSRunnable
48 public JSRunnable(JSObject runnable) { in JSRunnable() argument
49 this.runnable = runnable; in JSRunnable()
61 runnable.call("run", null); in run()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/ios/LibreOfficeLight/LibreOfficeLight/LOKit/
H A DAsyncUtil.swift15 public func runInBackground(_ runnable: @escaping Runnable) in runInBackground()
17 DispatchQueue.global(qos: .background).async(execute: runnable) in runInBackground()
22 public func runOnMain(_ runnable: @escaping () -> ())
24 DispatchQueue.main.async(execute: runnable)
59 public func async( _ runnable: @escaping Runnable) in async()
62 runnable() in async()
/dports/www/firefox-esr/firefox-91.8.0/mobile/android/geckoview/src/main/java/org/mozilla/gecko/util/
H A DThreadUtils.java50 public static void runOnUiThread(final Runnable runnable) { in runOnUiThread() argument
53 runnable.run(); in runOnUiThread()
57 postToUiThread(runnable); in runOnUiThread()
60 public static void postToUiThread(final Runnable runnable) { in postToUiThread() argument
61 sUiHandler.post(runnable); in postToUiThread()
68 public static void postToBackgroundThread(final Runnable runnable) { in postToBackgroundThread() argument
69 GeckoBackgroundThread.post(runnable); in postToBackgroundThread()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/actions/
H A DProgressDialogRunnableContext.java68 …public void run(IRunnableWithProgress runnable) throws InvocationTargetException, InterruptedExcep… in run() argument
69 getRunnableContext().run(true /* fork */, true /* cancelable */, wrapRunnable(runnable)); in run()
74 return (fork, cancelable, runnable) -> { in getRunnableContext()
76 manager.busyCursorWhile(runnable); in getRunnableContext()
86 private IRunnableWithProgress wrapRunnable(final IRunnableWithProgress runnable) { in wrapRunnable() argument
90 runnable.run(monitor); in wrapRunnable()
95 runnable.run(pm); in wrapRunnable()
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/build/android/pylib/
H A Dtest_info_collection.py16 def __init__(self, runnable, set_up=None, tear_down=None): argument
18 self.runnable = runnable
20 self.qualified_name = self._GetQualifiedName(runnable)
25 def _GetQualifiedName(self, runnable): argument
38 runnable_name = runnable.__name__
41 os.path.basename(runnable.__globals__['__file__']))[0]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/build/android/pylib/
H A Dtest_info_collection.py16 def __init__(self, runnable, set_up=None, tear_down=None): argument
18 self.runnable = runnable
20 self.qualified_name = self._GetQualifiedName(runnable)
25 def _GetQualifiedName(self, runnable): argument
38 runnable_name = runnable.__name__
41 os.path.basename(runnable.__globals__['__file__']))[0]
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/build/android/pylib/
H A Dtest_info_collection.py16 def __init__(self, runnable, set_up=None, tear_down=None): argument
18 self.runnable = runnable
20 self.qualified_name = self._GetQualifiedName(runnable)
25 def _GetQualifiedName(self, runnable): argument
38 runnable_name = runnable.__name__
41 os.path.basename(runnable.__globals__['__file__']))[0]
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/build/android/pylib/
H A Dtest_info_collection.py16 def __init__(self, runnable, set_up=None, tear_down=None): argument
18 self.runnable = runnable
20 self.qualified_name = self._GetQualifiedName(runnable)
25 def _GetQualifiedName(self, runnable): argument
38 runnable_name = runnable.__name__
41 os.path.basename(runnable.__globals__['__file__']))[0]
/dports/mail/thunderbird/thunderbird-91.8.0/mobile/android/geckoview/src/main/java/org/mozilla/gecko/util/
H A DThreadUtils.java50 public static void runOnUiThread(final Runnable runnable) { in runOnUiThread() argument
53 runnable.run(); in runOnUiThread()
57 postToUiThread(runnable); in runOnUiThread()
60 public static void postToUiThread(final Runnable runnable) { in postToUiThread() argument
61 sUiHandler.post(runnable); in postToUiThread()
68 public static void postToBackgroundThread(final Runnable runnable) { in postToBackgroundThread() argument
69 GeckoBackgroundThread.post(runnable); in postToBackgroundThread()
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/build/android/pylib/
H A Dtest_info_collection.py16 def __init__(self, runnable, set_up=None, tear_down=None): argument
18 self.runnable = runnable
20 self.qualified_name = self._GetQualifiedName(runnable)
25 def _GetQualifiedName(self, runnable): argument
38 runnable_name = runnable.__name__
41 os.path.basename(runnable.__globals__['__file__']))[0]
/dports/graphics/digikam/digikam-7.4.0/core/libs/threads/
H A Dworkerobject.cpp50 runnable (nullptr), in Private()
60 WorkerObjectRunnable* runnable; member in Digikam::WorkerObject::Private
93 while ((d->state != Inactive) || d->runnable) in wait()
187 void WorkerObject::addRunnable(WorkerObjectRunnable* runnable) in addRunnable() argument
190 d->runnable = runnable; in addRunnable()
193 void WorkerObject::removeRunnable(WorkerObjectRunnable* runnable) in removeRunnable() argument
199 if (d->runnable == runnable) in removeRunnable()
201 d->runnable = nullptr; in removeRunnable()
/dports/devel/kf5-knewstuff/knewstuff-5.89.0/src/core/jobs/
H A Dkpackagejob.cpp44 KPackageTask *runnable{nullptr}; member in KPackageJob::Private
153 if (d->runnable) { in start()
157 d->runnable = new KPackageTask(this); in start()
158 d->runnable->package = d->package; in start()
159 d->runnable->packageRoot = d->packageRoot; in start()
160 d->runnable->serviceType = d->serviceType; in start()
161 d->runnable->operation = d->operation; in start()
163 d->runnable, in start()
172 d->runnable, in start()
179 QThreadPool::globalInstance()->start(d->runnable); in start()
/dports/lang/v8/v8-9.6.180.12/tools/
H A Drun_perf.py214 if runnable.name not in self.runnables:
215 self.runnables[runnable.name] = {
216 'graphs': runnable.graphs,
218 'timeout': runnable.timeout,
720 if runnable.process_size:
764 if runnable.path:
782 binary=runnable.binary,
785 timeout=runnable.timeout,
794 if runnable.process_size:
1086 def RunGenerator(runnable): argument
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/tools/
H A Drun_perf.py212 if runnable.name not in self.runnables:
213 self.runnables[runnable.name] = {
214 'graphs': runnable.graphs,
216 'timeout': runnable.timeout,
713 if runnable.process_size:
757 if runnable.path:
775 binary=runnable.binary,
778 timeout=runnable.timeout,
787 if runnable.process_size:
1079 def RunGenerator(runnable): argument
[all …]
/dports/www/firefox-esr/firefox-91.8.0/dom/worklet/
H A DWorkletThread.cpp148 RefPtr<MicroTaskRunnable> runnable(aRunnable); in DispatchToMicroTask() local
151 MOZ_ASSERT(runnable); in DispatchToMicroTask()
162 GetMicroTaskQueue().push_back(std::move(runnable)); in DispatchToMicroTask()
278 RefPtr<PrimaryRunnable> runnable = new PrimaryRunnable(thread); in Create() local
288 nsCOMPtr<nsIRunnable> runnable(aRunnable); in DispatchRunnable() local
294 nsCOMPtr<nsIRunnable> runnable(aRunnable); in DispatchFromScript() local
295 return Dispatch(runnable.forget(), aFlags); in DispatchFromScript()
301 nsCOMPtr<nsIRunnable> runnable(aRunnable); in Dispatch() local
411 DispatchRunnable(runnable.forget()); in Terminate()
419 nsCOMPtr<nsIRunnable> runnable = NewRunnableMethod( in TerminateInternal() local
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/dom/worklet/
H A DWorkletThread.cpp142 RefPtr<MicroTaskRunnable> runnable(aRunnable); in DispatchToMicroTask() local
145 MOZ_ASSERT(runnable); in DispatchToMicroTask()
156 GetMicroTaskQueue().push(std::move(runnable)); in DispatchToMicroTask()
272 RefPtr<PrimaryRunnable> runnable = new PrimaryRunnable(thread); in Create() local
282 nsCOMPtr<nsIRunnable> runnable(aRunnable); in DispatchRunnable() local
288 nsCOMPtr<nsIRunnable> runnable(aRunnable); in DispatchFromScript() local
289 return Dispatch(runnable.forget(), aFlags); in DispatchFromScript()
295 nsCOMPtr<nsIRunnable> runnable(aRunnable); in Dispatch() local
400 DispatchRunnable(runnable.forget()); in Terminate()
408 nsCOMPtr<nsIRunnable> runnable = NewRunnableMethod( in TerminateInternal() local
[all …]
/dports/www/firefox/firefox-99.0/dom/worklet/
H A DWorkletThread.cpp149 RefPtr<MicroTaskRunnable> runnable(aRunnable); in DispatchToMicroTask() local
152 MOZ_ASSERT(runnable); in DispatchToMicroTask()
163 GetMicroTaskQueue().push_back(std::move(runnable)); in DispatchToMicroTask()
279 RefPtr<PrimaryRunnable> runnable = new PrimaryRunnable(thread); in Create() local
289 nsCOMPtr<nsIRunnable> runnable(aRunnable); in DispatchRunnable() local
295 nsCOMPtr<nsIRunnable> runnable(aRunnable); in DispatchFromScript() local
296 return Dispatch(runnable.forget(), aFlags); in DispatchFromScript()
302 nsCOMPtr<nsIRunnable> runnable(aRunnable); in Dispatch() local
412 DispatchRunnable(runnable.forget()); in Terminate()
420 nsCOMPtr<nsIRunnable> runnable = NewRunnableMethod( in TerminateInternal() local
[all …]

1...<<11121314151617181920>>...391