Home
last modified time | relevance | path

Searched refs:submit (Results 1 – 25 of 274) sorted by relevance

1234567891011

/external/guava/guava/src/com/google/common/util/concurrent/
DForwardingListeningExecutorService.java39 public <T> ListenableFuture<T> submit(Callable<T> task) { in submit() method in ForwardingListeningExecutorService
40 return delegate().submit(task); in submit()
44 public ListenableFuture<?> submit(Runnable task) { in submit() method in ForwardingListeningExecutorService
45 return delegate().submit(task); in submit()
49 public <T> ListenableFuture<T> submit(Runnable task, T result) { in submit() method in ForwardingListeningExecutorService
50 return delegate().submit(task, result); in submit()
DForwardingExecutorService.java104 public <T> Future<T> submit(Callable<T> task) { in submit() method in ForwardingExecutorService
105 return delegate().submit(task); in submit()
109 public Future<?> submit(Runnable task) { in submit() method in ForwardingExecutorService
110 return delegate().submit(task); in submit()
114 public <T> Future<T> submit(Runnable task, T result) { in submit() method in ForwardingExecutorService
115 return delegate().submit(task, result); in submit()
DListeningExecutorService.java41 <T> ListenableFuture<T> submit(Callable<T> task); in submit() method
48 ListenableFuture<?> submit(Runnable task); in submit() method
55 <T> ListenableFuture<T> submit(Runnable task, T result); in submit() method
DAbstractListeningExecutorService.java42 @Override public ListenableFuture<?> submit(Runnable task) { in submit() method in AbstractListeningExecutorService
48 @Override public <T> ListenableFuture<T> submit(Runnable task, T result) { in submit() method in AbstractListeningExecutorService
54 @Override public <T> ListenableFuture<T> submit(Callable<T> task) { in submit() method in AbstractListeningExecutorService
84 futures.add(ecs.submit(it.next())); in doInvokeAny()
93 futures.add(ecs.submit(it.next())); in doInvokeAny()
/external/guava/guava-tests/test/com/google/common/collect/
DQueuesTest.java87 threadPool.submit(new Producer(q, 20)); in testMultipleProducers()
88 threadPool.submit(new Producer(q, 20)); in testMultipleProducers()
89 threadPool.submit(new Producer(q, 20)); in testMultipleProducers()
90 threadPool.submit(new Producer(q, 20)); in testMultipleProducers()
91 threadPool.submit(new Producer(q, 20)); in testMultipleProducers()
112 Future<?> submitter = threadPool.submit(new Producer(q, 1)); in testDrainTimesOut()
160 threadPool.submit(new Producer(q, 1)); in testNegativeMaxElements()
179 threadPool.submit(new Interrupter(Thread.currentThread())); in testDrain_throws()
195 threadPool.submit(new Runnable() { in testDrainUninterruptibly_doesNotThrow()
240 threadPool.submit(new Interrupter(Thread.currentThread())); in assertInterruptibleDrained()
[all …]
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/plugin_settings/domui/css/
Dbutton.css3 input[type='submit'] {
18 input[type='submit']:hover {
27 input[type='submit']:active {
35 input[type='submit'][disabled],
38 input[type='submit'][disabled]:hover {
/external/chromium/chrome/browser/resources/shared/css/
Dbutton.css3 input[type='submit'] {
18 input[type='submit']:hover {
27 input[type='submit']:active {
35 input[type='submit'][disabled],
38 input[type='submit'][disabled]:hover {
/external/robolectric/src/main/java/com/xtremelabs/robolectric/util/
DRobolectricBackgroundExecutorService.java42 public <T> Future<T> submit(Callable<T> tCallable) { in submit() method in RobolectricBackgroundExecutorService
47 public <T> Future<T> submit(Runnable runnable, T t) { in submit() method in RobolectricBackgroundExecutorService
52 public Future<?> submit(Runnable runnable) { in submit() method in RobolectricBackgroundExecutorService
53 return submit(runnable, null); in submit()
89 submit(runnable); in execute()
/external/guava/guava-bootstrap/src/java/util/concurrent/
DExecutorService.java28 <T> Future<T> submit(Callable<T> task); in submit() method
30 <T> Future<T> submit(Runnable task, T result); in submit() method
32 Future<?> submit(Runnable task); in submit() method
/external/chromium_org/third_party/WebKit/Source/web/
DWebPasswordFormData.cpp116 HTMLFormControlElement* submit, in assemblePasswordFormResult() argument
136 if (submit) in assemblePasswordFormResult()
137 result->submitElement = submit->name(); in assemblePasswordFormResult()
179 fields.submit, fields.userName, in WebPasswordFormData()
DWebPasswordFormUtils.h54 WebCore::HTMLFormControlElement* submit; member
55 PasswordFormFields() : userName(0), submit(0) { } in PasswordFormFields()
DWebFormElement.cpp74 void WebFormElement::submit() in submit() function in blink::WebFormElement
76 unwrap<HTMLFormElement>()->submit(); in submit()
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DAbstractListeningExecutorServiceTest.java61 Future<?> future = e.submit(task); in testExecuteRunnable()
71 Future<String> future = e.submit(new StringTask()); in testSubmitCallable()
81 Future<?> future = e.submit(new NoOpRunnable()); in testSubmitRunnable()
91 Future<String> future = e.submit(new NoOpRunnable(), TEST_STRING); in testSubmitRunnable2()
104 Future future = e.submit(Executors.callable( in testSubmitPrivilegedAction()
127 Future future = e.submit(Executors.callable( in testSubmitPrivilegedExceptionAction()
147 Future future = e.submit(Executors.callable( in testSubmitFailedPrivilegedExceptionAction()
170 e.submit((Runnable) null); in testExecuteNullRunnable()
181 e.submit((Callable<?>) null); in testSubmitNullCallable()
206 Future<Void> future = p.submit(awaiter); in testInterruptedSubmit()
[all …]
DMoreExecutorsTest.java72 Future<?> future = executor.submit(incrementTask); in testSameThreadExecutorServiceInThreadExecution()
83 ListenableFuture<?> future = executor.submit(incrementTask); in testSameThreadExecutorServiceInThreadExecution()
139 Future<?> future = executor.submit(new Callable<Void>() { in testSameThreadExecutorServiceTermination()
173 executor.submit(doNothingRunnable); in testSameThreadExecutorServiceTermination()
190 executor.submit(doNothingRunnable); in testSameThreadExecutorServiceTermination()
/external/chromium_org/chrome/browser/resources/gaia_auth/
Doffline.css126 input[type=submit].g-button {
133 *+html input[type=submit].g-button {
158 .g-button-submit {
169 .g-button-submit:hover {
177 .g-button-submit:active {
181 .g-button-submit:visited {
184 .g-button-submit:focus {
188 .g-button-submit:focus:hover {
248 .signin-box input[type=submit] {
/external/e2fsprogs/
DSUBMITTING-PATCHES15 have the right to submit it under the open source license
20 license and I have the right under that license to submit that
23 permitted to submit under a different license), as indicated
32 personal information I submit with it, including my sign-off) is
/external/chromium_org/chrome/browser/resources/
Dsync_setup_overlay.css96 #sync-setup-overlay * input[type='submit'] {
297 .signin-box input[type=submit] {
318 .signin-box input[type=submit]:hover {
327 .signin-box input[type=submit]:focus {
334 .signin-box input[type=submit]:active,
335 .signin-box input[type=submit]:focus:active {
339 .signin-box input[type=submit]:focus:hover {
343 .signin-box input[type=submit][disabled],
344 .signin-box input[type=submit][disabled]:hover,
345 .signin-box input[type=submit][disabled]:active {
/external/okhttp/src/main/java/com/squareup/okhttp/
DConnectionPool.java142 executorService.submit(new Runnable() { in waitForCleanupCallableToRun()
208 executorService.submit(connectionsCleanupCallable); in get()
242 executorService.submit(connectionsCleanupCallable); in recycle()
250 executorService.submit(connectionsCleanupCallable); in maybeShare()
/external/chromium/chrome/browser/remoting/resources/
Dremoting_setup_flow.css33 input[type='submit'] {
38 html[os='mac'] input[type='submit'] {
/external/chromium_org/ui/webui/resources/css/
Dwidgets.css13 input[type='submit']):not(.custom-appearance):not(.link-button),
33 input[type='submit']):not(.custom-appearance):not(.link-button),
47 input[type='submit']):not(.custom-appearance):not(.link-button) {
155 input[type='submit']):not(.custom-appearance):not(.link-button)) {
178 input[type='submit']):not(.custom-appearance):not(.link-button)) {
195 input[type='submit']):not(.custom-appearance):not(.link-button),
238 input[type='submit']):not(.custom-appearance):not(.link-button)) {
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
Dwidgets.css15 input[type='submit']):not(.custom-appearance):not(.link-button),
34 input[type='submit']):not(.custom-appearance):not(.link-button),
48 input[type='submit']):not(.custom-appearance):not(.link-button) {
153 input[type='submit']):not(.custom-appearance):not(.link-button)) {
176 input[type='submit']):not(.custom-appearance):not(.link-button)) {
193 input[type='submit']):not(.custom-appearance):not(.link-button),
235 input[type='submit']):not(.custom-appearance):not(.link-button)) {
/external/chromium_org/chrome/third_party/chromevox/chromevox/background/
Doptions_widgets.css15 input[type='submit']:not(.custom-appearance):not(.link-button),
34 input[type='submit']:not(.custom-appearance):not(.link-button),
47 input[type='submit']:not(.custom-appearance):not(.link-button) {
141 input[type='submit']:not(.custom-appearance):not(.link-button):enabled:hover,
162 input[type='submit']:not(.custom-appearance):not(.link-button):enabled:active,
181 input[type='submit']:not(.custom-appearance):not(.link-button):disabled,
216 input[type='submit']:not(.custom-appearance):enabled:focus,
/external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
DRobolectricBackgroundExecutorServiceTest.java47 Future<String> future = executorService.submit(runnable, "foo"); in submitRunnable_shouldRunStuffOnBackgroundThread()
61 Future<String> future = executorService.submit(new Callable<String>() { in submitCallable_shouldRunStuffOnBackgroundThread()
/external/jmdns/src/javax/jmdns/impl/
DJmmDNSImpl.java90 executor.submit(new Runnable() { in close()
203 executor.submit(new Runnable() { in getServiceInfos()
257 _jmDNSExecutor.submit(new Runnable() { in requestServiceInfo()
406 executor.submit(new Runnable() { in list()
498 _ListenerExecutor.submit(new Runnable() { in inetAddressAdded()
529 _ListenerExecutor.submit(new Runnable() { in inetAddressRemoved()
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLButtonElement.cpp69 … DEFINE_STATIC_LOCAL(const AtomicString, submit, ("submit", AtomicString::ConstructFromLiteral)); in formControlType()
70 return submit; in formControlType()

1234567891011