/libcore/luni/src/main/java/java/util/concurrent/ |
TimeoutException.java | 14 * not possible or desirable then {@code TimeoutException} should be 20 public class TimeoutException extends Exception { 24 * Constructs a {@code TimeoutException} with no specified detail 27 public TimeoutException() {} 30 * Constructs a {@code TimeoutException} with the specified detail 35 public TimeoutException(String message) {
|
Future.java | 136 * @throws TimeoutException if the wait timed out 139 throws InterruptedException, ExecutionException, TimeoutException;
|
CyclicBarrier.java | 167 TimeoutException { 224 throw new TimeoutException(); 330 } catch (TimeoutException toe) { 361 * <p>If the specified waiting time elapses then {@link TimeoutException} 390 * @throws TimeoutException if the specified timeout elapses 400 TimeoutException {
|
/external/droiddriver/src/com/google/android/droiddriver/exceptions/ |
TimeoutException.java | 23 public class TimeoutException extends DroidDriverException { 25 public TimeoutException(String message) { 29 public TimeoutException(Throwable cause) { 33 public TimeoutException(String message, Throwable cause) {
|
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/ |
CallbackHelper.java | 10 import java.util.concurrent.TimeoutException; 111 * CallbackHelper operationHelper) throws InterruptedException, TimeoutException { 169 * @throws TimeoutException Thrown if the method times out before onPageFinished is called. 172 TimeUnit unit) throws InterruptedException, TimeoutException { 181 throw new TimeoutException("waitForCallback timed out!"); 188 throws InterruptedException, TimeoutException { 194 throws InterruptedException, TimeoutException { 205 throws InterruptedException, TimeoutException { 214 if (!isSatisfied) throw new TimeoutException("waitUntilCriteria timed out!"); 219 throws InterruptedException, TimeoutException { [all...] |
JavaScriptUtils.java | 16 import java.util.concurrent.TimeoutException; 30 final String code) throws InterruptedException, TimeoutException { 45 final String code) throws InterruptedException, TimeoutException { 60 throws InterruptedException, TimeoutException {
|
DOMUtils.java | 17 import java.util.concurrent.TimeoutException; 29 throws InterruptedException, TimeoutException { 75 throws InterruptedException, TimeoutException { 90 throws InterruptedException, TimeoutException { 101 throws InterruptedException, TimeoutException { 112 throws InterruptedException, TimeoutException { 122 throws InterruptedException, TimeoutException { 131 throws InterruptedException, TimeoutException { 137 throws InterruptedException, TimeoutException { 181 } catch (TimeoutException e) [all...] |
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/autofill/ |
AutofillDialogControllerTest.java | 21 import java.util.concurrent.TimeoutException; 159 public void testFieldsAreFilledMinimal() throws InterruptedException, TimeoutException { 168 public void testFieldsAreFilledFullBilling() throws InterruptedException, TimeoutException { 177 public void testFieldsAreFilledShipping() throws InterruptedException, TimeoutException { 186 public void testFieldsAreFilledBillingPhone() throws InterruptedException, TimeoutException { 195 public void testFieldsAreFilledEverything() throws InterruptedException, TimeoutException { 206 public void testRacTypeName() throws InterruptedException, TimeoutException { 214 public void testRacTypeBillingName() throws InterruptedException, TimeoutException { 222 public void testRacTypeShippingName() throws InterruptedException, TimeoutException { 232 public void testRacTypeTel() throws InterruptedException, TimeoutException { [all...] |
/frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/ |
AwaitableCompletionListener.java | 24 import java.util.concurrent.TimeoutException; 48 TimeoutException { 50 throw new TimeoutException();
|
AwaitableErrorListener.java | 24 import java.util.concurrent.TimeoutException; 56 TimeoutException { 58 throw new TimeoutException();
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
CheckedFuture.java | 25 import java.util.concurrent.TimeoutException; 69 * timeout this method throws a normal {@link TimeoutException}. 72 * @throws TimeoutException if retrieving the result timed out. 75 V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X;
|
AbstractCheckedFuture.java | 24 import java.util.concurrent.TimeoutException; 93 * method's standard exceptions (excluding {@link TimeoutException}, which is 102 * @throws TimeoutException {@inheritDoc} 105 public V checkedGet(long timeout, TimeUnit unit) throws TimeoutException, X {
|
/external/droiddriver/src/com/google/android/droiddriver/uiautomation/ |
UiAutomationDriver.java | 26 import com.google.android.droiddriver.exceptions.TimeoutException; 64 } catch (java.util.concurrent.TimeoutException e) { 65 throw new TimeoutException(e); 75 throw new TimeoutException(
|
/frameworks/volley/src/com/android/volley/toolbox/ |
RequestFuture.java | 26 import java.util.concurrent.TimeoutException; 89 } catch (TimeoutException e) { 96 throws InterruptedException, ExecutionException, TimeoutException { 101 throws InterruptedException, ExecutionException, TimeoutException { 121 throw new TimeoutException();
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
ForwardingCheckedFutureTest.java | 30 import java.util.concurrent.TimeoutException; 56 public void testTimedCheckedGet() throws TimeoutException, IOException { 65 throws IOException, TimeoutException { 67 .andThrow(new TimeoutException()).times(2); 72 } catch (TimeoutException expected) {} 76 } catch (TimeoutException expected) {}
|
/frameworks/base/core/java/android/accounts/ |
AccountManagerFuture.java | 21 import java.util.concurrent.TimeoutException;
|
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/ |
FullScreenVideoTestAwContentsClient.java | 20 import java.util.concurrent.TimeoutException; 56 public void waitForCustomViewShown() throws TimeoutException, InterruptedException { 60 public void waitForCustomViewHidden() throws InterruptedException, TimeoutException {
|
AwContentsClientGetVideoLoadingProgressViewTest.java | 16 import java.util.concurrent.TimeoutException; 42 private void waitForViewAttached() throws InterruptedException, TimeoutException {
|
/frameworks/base/core/java/android/util/ |
TimedRemoteCaller.java | 21 import java.util.concurrent.TimeoutException; 94 public final T getResultTimed(int sequence) throws TimeoutException { 98 throw new TimeoutException("No reponse for sequence: " + sequence);
|
/frameworks/volley/tests/src/com/android/volley/mock/ |
WaitableQueue.java | 26 import java.util.concurrent.TimeoutException; 36 throws TimeoutException, InterruptedException { 39 throw new TimeoutException();
|
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/contextmenu/ |
ContextMenuTest.java | 31 import java.util.concurrent.TimeoutException; 48 public void testCopyLinkURL() throws InterruptedException, TimeoutException { 61 public void testCopyImageLinkCopiesLinkURL() throws InterruptedException, TimeoutException { 74 public void testCopyLinkTextSimple() throws InterruptedException, TimeoutException { 88 public void testCopyLinkTextComplex() throws InterruptedException, TimeoutException { 102 public void testCopyImageToClipboard() throws InterruptedException, TimeoutException { 120 public void testLongPressOnImage() throws InterruptedException, TimeoutException { 152 public void testLongPressOnImageLink() throws InterruptedException, TimeoutException { 181 public void testDismissContextMenuOnBack() throws InterruptedException, TimeoutException { 203 public void testDismissContextMenuOnClick() throws InterruptedException, TimeoutException { [all...] |
/frameworks/base/services/java/com/android/server/print/ |
RemotePrintSpooler.java | 41 import java.util.concurrent.TimeoutException; 117 } catch (TimeoutException te) { 141 } catch (TimeoutException te) { 164 } catch (TimeoutException te) { 191 } catch (TimeoutException te) { 216 } catch (TimeoutException te) { 241 } catch (TimeoutException te) { 266 } catch (TimeoutException te) { 290 } catch (TimeoutException te) { 328 } catch (TimeoutException te) [all...] |
/frameworks/base/core/java/android/os/ |
SystemService.java | 24 import java.util.concurrent.TimeoutException; 108 throws TimeoutException { 118 throw new TimeoutException("Service " + service + " currently " + currentState
|
/external/droiddriver/src/com/google/android/droiddriver/ |
DroidDriver.java | 20 import com.google.android.droiddriver.exceptions.TimeoutException; 61 * @throws TimeoutException If no matching elements are found within the 83 * @throws TimeoutException If matching element does not appear within the 93 * @throws TimeoutException If matching element is not gone within the default
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
CameraTestThread.java | 24 import java.util.concurrent.TimeoutException; 64 throw new TimeoutException("createLooperThread: start timeout");
|