Searched refs:task (Results 1 - 25 of 688) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Drecognizers.rb916 tailors the core functionality provided by Recognizer to the task of
1225 tailors the functionality provided by Recognizer to the task of parsing.
1235 primary task is to implement the sentence structure.
H A Dstreams.rb55 designed to be used by recognizers for a specific recognition task. Most of the
284 manage the task of "tuning" to a specific token channel.
H A Dtask.rb14 A rake task-generating utility concerning ANTLR grammar file
19 require 'antlr3/task'
96 task( 'clobber' ) do
107 task( 'compile' => target_files )
H A Dtree.rb60 tailors the functionality provided by Recognizer to the task of tree-pattern
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DBaseTest.java133 JavaCompiler.CompilationTask task =
136 boolean ok = task.call();
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DDelegatedTaskTest.java35 DelegatedTask task = new DelegatedTask(null, protocol, null);
36 task.run();
H A DHandshakeProtocolTest.java205 DelegatedTask task = new DelegatedTask(null, null, null);
206 protocol.delegatedTasks.add(task);
207 assertSame(protocol.getTask(), task);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DThreadControllerWrapper.java38 public static void waitThread(Thread worker, Runnable task) argument
41 m_tpool.waitThread(worker, task);
54 * Will get a thread from the pool, execute the task
60 * NEEDSDOC @param task
61 * @param priority if >0 the task will run with the given priority
63 * @return The thread that is running the task, can be used
66 public Thread run(Runnable task, int priority) argument
69 Thread t = new Thread(task);
79 * Wait until the task is completed on the worker
83 * NEEDSDOC @param task
87 waitThread(Thread worker, Runnable task) argument
[all...]
/external/bison/
H A Dconfigure10959 #include <mach/task.h>
11004 Note that we replace the exception port for the entire task, not only
11884 #include <mach/task.h>
11929 Note that we replace the exception port for the entire task, not only
13750 #include <mach/task.h>
13795 Note that we replace the exception port for the entire task, not only
/external/bluetooth/bluedroid/gki/common/
H A Dgki_debug.c109 UINT16 gki_calc_stack (UINT8 task) argument
115 stacksize = (int) gki_cb.com.OSStackSize[task];
116 p = (UINT32 *)gki_cb.com.OSStack[task]; /* assume stack is aligned, */
131 ** Description Print task stack usage.
253 ** Description This function prints the task states.
/external/chromium-trace/
H A Dscript.js508 a+" <- : Select previous event on current timeline\n -> : Select next event on current timeline\n":a+"General Navigation\n g/General : Shows grid at the start/end of the selected task\n <-,^TAB : Select previous event on current timeline\n ->, TAB : Select next event on current timeline\n";return a+"\nSpace to switch between select / pan modes\nShift to temporarily switch between select / pan modes\nScroll to zoom in/out (in pan mode)\nDbl-click to add timing markers\nf to zoom into selection\nz to reset zoom and pan to initial view\n/ to search\n"},
/external/chromium-trace/trace-viewer/src/base/
H A Draf.js39 function runTask(task) {
41 task.callback.call(task.context);
43 base.onAnimationFrameError(e, task.stack);
/external/chromium-trace/trace-viewer/src/cc/
H A Draster_task_slice_view.css5 .raster-task-slice-view {
10 .raster-task-slice-view > object-snapshot-view {
/external/chromium_org/android_webview/browser/
H A Ddeferred_gpu_command_service.cc83 void DeferredGpuCommandService::ScheduleTask(const base::Closure& task) { argument
86 tasks_.push(task);
121 base::Closure task; local
130 task = idle_tasks_.front().second;
133 task.Run();
162 base::Closure task; local
165 task = tasks_.front();
168 task.Run();
H A Ddeferred_gpu_command_service.h39 virtual void ScheduleTask(const base::Closure& task) OVERRIDE;
40 virtual void ScheduleIdleWork(const base::Closure& task) OVERRIDE;
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwWebContentsDelegateAdapter.java196 GetDisplayNameTask task = new GetDisplayNameTask(
198 task.execute();
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DAwTestBase.java77 FutureTask<R> task = new FutureTask<R>(callable);
79 getInstrumentation().runOnMainSync(task);
80 return task.get();
/external/chromium_org/android_webview/native/
H A Daw_quota_manager_bridge_impl.cc146 void RunOnUIThread(const base::Closure& task) { argument
148 task.Run();
150 BrowserThread::PostTask(BrowserThread::UI, FROM_HERE, task);
H A Dcookie_manager.cc174 void ExecCookieTaskSync(const base::Callback<void(BoolCallback)>& task);
175 void ExecCookieTaskSync(const base::Callback<void(IntCallback)>& task);
176 void ExecCookieTaskSync(const base::Callback<void(base::Closure)>& task);
177 void ExecCookieTask(const base::Closure& task);
278 // Executes the |task| on the |cookie_monster_proxy_| message loop and
290 const base::Callback<void(BoolCallback)>& task) {
293 base::Bind(task, BoolCallbackAdapter(SignalEventClosure(&completion))));
300 const base::Callback<void(IntCallback)>& task) {
303 base::Bind(task, IntCallbackAdapter(SignalEventClosure(&completion))));
311 const base::Callback<void(base::Closure)>& task) {
289 ExecCookieTaskSync( const base::Callback<void(BoolCallback)>& task) argument
299 ExecCookieTaskSync( const base::Callback<void(IntCallback)>& task) argument
310 ExecCookieTaskSync( const base::Callback<void(base::Closure)>& task) argument
319 ExecCookieTask(const base::Closure& task) argument
[all...]
/external/chromium_org/ash/system/chromeos/session/
H A Dlogout_confirmation_controller_unittest.cc34 const base::Closure& task,
38 const base::Closure& task,
91 const base::Closure& task,
93 tasks_.push(std::make_pair(now_ + delay, task));
99 const base::Closure& task,
113 base::Closure task = tasks_.top().second; local
115 task.Run();
123 base::Closure task = tasks_.top().second; local
125 task.Run();
89 PostDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
97 PostNonNestableDelayedTask( const tracked_objects::Location& from_here, const base::Closure& task, base::TimeDelta delay) argument
/external/chromium_org/base/android/java/src/org/chromium/base/
H A DThreadUtils.java66 FutureTask<Void> task = new FutureTask<Void>(r, null);
67 postOnUiThread(task);
69 task.get();
100 FutureTask<T> task = new FutureTask<T>(c);
101 runOnUiThread(task);
103 return task.get();
113 * @param task The FutureTask to run
114 * @return The queried task (to aid inline construction)
116 public static <T> FutureTask<T> runOnUiThread(FutureTask<T> task) { argument
118 task
157 postOnUiThread(FutureTask<T> task) argument
168 postOnUiThread(Runnable task) argument
179 postOnUiThreadDelayed(Runnable task, long delayMillis) argument
[all...]
/external/chromium_org/base/
H A Dat_exit.cc51 void AtExitManager::RegisterTask(base::Closure task) { argument
58 g_top_manager->stack_.push(task);
71 base::Closure task = g_top_manager->stack_.top(); local
72 task.Run();
H A Dat_exit.h45 // Registers the specified task to be called at exit.
46 static void RegisterTask(base::Closure task);
H A Dbase.target.darwin-arm.mk225 base/task/cancelable_task_tracker.cc \
H A Dbase.target.darwin-arm64.mk225 base/task/cancelable_task_tracker.cc \

Completed in 9195 milliseconds

1234567891011>>