HomeSort by relevance Sort by last modified time
    Searched defs:submit (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/net/
web_mock.py 57 def submit(self): member in class:MockBrowser
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingListeningExecutorService.java 39 public <T> ListenableFuture<T> submit(Callable<T> task) { method in class:ForwardingListeningExecutorService
40 return delegate().submit(task);
44 public ListenableFuture<?> submit(Runnable task) { method in class:ForwardingListeningExecutorService
45 return delegate().submit(task);
49 public <T> ListenableFuture<T> submit(Runnable task, T result) { method in class:ForwardingListeningExecutorService
50 return delegate().submit(task, result);
ListeningExecutorService.java 41 <T> ListenableFuture<T> submit(Callable<T> task); method in interface:ListeningExecutorService
48 ListenableFuture<?> submit(Runnable task); method in interface:ListeningExecutorService
55 <T> ListenableFuture<T> submit(Runnable task, T result); method in interface:ListeningExecutorService
ForwardingExecutorService.java 104 public <T> Future<T> submit(Callable<T> task) { method in class:ForwardingExecutorService
105 return delegate().submit(task);
109 public Future<?> submit(Runnable task) { method in class:ForwardingExecutorService
110 return delegate().submit(task);
114 public <T> Future<T> submit(Runnable task, T result) { method in class:ForwardingExecutorService
115 return delegate().submit(task, result);
AbstractListeningExecutorService.java 33 * method. More concretely, the {@code submit}, {@code invokeAny} and {@code invokeAll} methods
42 @Override public ListenableFuture<?> submit(Runnable task) { method in class:AbstractListeningExecutorService
48 @Override public <T> ListenableFuture<T> submit(Runnable task, T result) { method in class:AbstractListeningExecutorService
54 @Override public <T> ListenableFuture<T> submit(Callable<T> task) { method in class:AbstractListeningExecutorService
84 futures.add(ecs.submit(it.next()));
93 futures.add(ecs.submit(it.next()));
  /external/guava/guava-bootstrap/src/java/util/concurrent/
ExecutorService.java 28 <T> Future<T> submit(Callable<T> task); method in interface:ExecutorService
30 <T> Future<T> submit(Runnable task, T result); method in interface:ExecutorService
32 Future<?> submit(Runnable task); method in interface:ExecutorService
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
DeviceReportLog.java 28 * NOTE: tests MUST call {@link #submit(Instrumentation)} if and only if the test passes in order to
36 public void submit(Instrumentation instrumentation) { method in class:DeviceReportLog
37 Log.i(TAG, "submit");
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
ResultReporter.java 56 multipartForm.submit();
MultipartForm.java 59 public void submit() throws IOException { method in class:MultipartForm
IssueReporter.java 135 mReporterService.submit(mCurrentIssue);
194 .submit(); method
  /external/chromium_org/third_party/WebKit/Source/web/
WebFormElement.cpp 71 void WebFormElement::submit() function in class:blink::WebFormElement
73 unwrap<HTMLFormElement>()->submit();
  /external/guava/guava-tests/test/com/google/common/testing/
FakeTickerTest.java 57 executorService.submit(new Callable<Void>() {
  /external/jmdns/src/javax/jmdns/impl/
JmmDNSImpl.java 90 executor.submit(new Runnable() {
203 executor.submit(new Runnable() {
257 _jmDNSExecutor.submit(new Runnable() {
406 executor.submit(new Runnable() {
498 _ListenerExecutor.submit(new Runnable() {
529 _ListenerExecutor.submit(new Runnable() {
  /external/guava/guava-tests/test/com/google/common/collect/
ConcurrentHashMultisetBasherTest.java 74 futures.add(pool.submit(new MutateTask(multiset, keys)));
MapMakerTest.java 133 threadPool.submit(new Runnable() {
QueuesTest.java 87 threadPool.submit(new Producer(q, 20));
88 threadPool.submit(new Producer(q, 20));
89 threadPool.submit(new Producer(q, 20));
90 threadPool.submit(new Producer(q, 20));
91 threadPool.submit(new Producer(q, 20));
112 Future<?> submitter = threadPool.submit(new Producer(q, 1));
160 threadPool.submit(new Producer(q, 1));
179 threadPool.submit(new Interrupter(Thread.currentThread()));
195 threadPool.submit(new Runnable() {
240 threadPool.submit(new Interrupter(Thread.currentThread()))
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
password_manager_browsertest.cc 389 // Fill a form and submit through a <input type="submit"> button. Nothing
407 // Fill a form and submit through a <input type="submit"> button. Nothing
461 // Fill a form and submit through a <input type="submit"> button. The form
486 // Fill a form and submit using <button> that calls submit() on the form.
487 // This should work regardless of the type of element, as long as submit() is
507 // Fill the dynamic password form and submit
1063 std::string submit = local
1145 std::string submit = local
1226 std::string submit = local
1257 std::string submit = local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/
Runner.java 110 futures.add(executor.submit(task));
  /external/chromium_org/third_party/closure_compiler/runner/src/org/chromium/closure/compiler/
Runner.java 115 futures.add(executor.submit(task));
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AtomicLongMapTest.java 551 threadPool.submit(new Runnable() {
AbstractListeningExecutorServiceTest.java 36 * to test the submit methods only.
61 Future<?> future = e.submit(task);
67 * Completed submit(callable) returns result
71 Future<String> future = e.submit(new StringTask());
77 * Completed submit(runnable) returns successfully
81 Future<?> future = e.submit(new NoOpRunnable());
87 * Completed submit(runnable, result) returns result
91 Future<String> future = e.submit(new NoOpRunnable(), TEST_STRING);
104 Future future = e.submit(Executors.callable(
127 Future future = e.submit(Executors.callable
    [all...]
  /cts/hostsidetests/theme/src/android/theme/cts/
ThemeHostTest.java 294 mCompletionService.submit(new ComparisonTask(mDevice, ref, name));
  /cts/tests/tests/security/src/android/security/cts/
OpenSSLEarlyCCSTest.java 191 mExecutorService.submit(new Callable<Void>() {
199 Future<Void> serverFuture = mExecutorService.submit(new Callable<Void>() {
207 Future<Void> clientFuture = mExecutorService.submit(new Callable<Void>() {
344 Future<Void> serverToClientTask = mExecutorService.submit(new Callable<Void>() {
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
focus_util.js 53 'submit' : false,
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormElement.cpp 205 if (event->eventPhase() != Event::CAPTURING_PHASE && targetNode && targetNode != this && (event->type() == EventTypeNames::submit || event->type() == EventTypeNames::reset)) {
245 // Default (submit) button is not activated; no implicit submission.
327 // Interactive validation must be done before dispatching the submit event.
336 if (dispatchEvent(Event::createCancelableBubble(EventTypeNames::submit)))
342 submit(event, true, true, NotSubmittedByJavaScript);
345 void HTMLFormElement::submit() function in class:blink::HTMLFormElement
347 submit(0, false, true, NotSubmittedByJavaScript);
352 submit(0, false, UserGestureIndicator::processingUserGesture(), SubmittedByJavaScript);
365 void HTMLFormElement::submit(Event* event, bool activateSubmitButton, bool processingUserGesture, FormSubmissionTrigger formSubmissionTrigger) function in class:blink::HTMLFormElement
381 bool needButtonActivation = activateSubmitButton; // do we need to activate a submit button
    [all...]

Completed in 555 milliseconds

1 2