HomeSort by relevance Sort by last modified time
    Searched refs:setException (Results 1 - 25 of 183) sorted by null

1 2 3 4 5 6 7 8

  /external/guava/guava/src/com/google/common/util/concurrent/
SettableFuture.java 23 * or {@link #setException(Throwable)} call. It may also be cancelled.
67 public boolean setException(Throwable throwable) {
68 return super.setException(throwable);
AbstractFuture.java 41 * {@link #setException(Throwable)}. Subclasses may also override {@link
199 protected boolean setException(Throwable throwable) {
200 boolean result = sync.setException(checkNotNull(throwable));
347 boolean setException(Throwable t) {
AsyncSettableFuture.java 75 public boolean setException(Throwable exception) {
Futures.java 487 setException(t);
492 setException(e);
641 outputFuture.setException(e);
    [all...]
  /frameworks/base/core/tests/coretests/src/android/animation/
FutureWaiter.java 24 * also exposes the protected {@link AbstractFuture#setException(Throwable)} method.
44 public boolean setException(Throwable throwable) {
45 return super.setException(throwable);
EventsTest.java 77 mFuture.setException(new RuntimeException(e));
105 mFuture.setException(new RuntimeException(e));
126 mFuture.setException(new RuntimeException(e));
147 mFuture.setException(new RuntimeException(e));
282 mFuture.setException(new RuntimeException(e));
305 mFuture.setException(new RuntimeException(e));
328 mFuture.setException(new RuntimeException(e));
351 mFuture.setException(new RuntimeException(e));
374 mFuture.setException(new RuntimeException(e));
397 mFuture.setException(new RuntimeException(e))
    [all...]
ViewPropertyAnimatorTest.java 76 mFuture.setException(new RuntimeException(e));
215 mFuture.setException(new RuntimeException(e));
238 mFuture.setException(new RuntimeException(e));
261 mFuture.setException(new RuntimeException(e));
285 mFuture.setException(new RuntimeException(e));
312 mFuture.setException(new RuntimeException(e));
336 mFuture.setException(new RuntimeException(e));
360 mFuture.setException(new RuntimeException(e));
AutoCancelTest.java 132 future.setException(e);
148 future.setException(e);
164 future.setException(e);
180 future.setException(e);
AnimatorSetEventsTest.java 69 mFuture.setException(new RuntimeException(e));
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
SettableFutureTest.java 56 assertTrue(future.setException(new Exception("failure")));
62 future.setException(null);
67 assertTrue(future.setException(new Exception("failure")));
AbstractChainedListenableFutureTest.java 61 inputFuture.setException(EXCEPTION);
67 inputFuture.setException(error);
AsyncSettableFutureTest.java 50 assertFalse(future.setException(new Exception("bar")));
61 assertTrue(future.setException(e));
65 assertFalse(future.setException(new Exception("quux")));
85 assertFalse(future.setException(new Exception("bar")));
107 assertFalse(future.setException(new Exception("bar")));
AbstractFutureTest.java 50 setException(failure);
125 future.setException(new IllegalArgumentException("failure"));
127 errorMessage.set("SetException call exited before future was complete.");
  /cts/tests/openglperf2/src/android/opengl2/cts/reference/
GLReferenceActivity.java 59 private synchronized void setException(Exception e) {
73 setException(new Exception("Benchmark failed to run"));
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-spi-0.9.0.M2.jar 
  /cts/tests/openglperf2/src/android/opengl2/cts/primitive/
GLPrimitiveActivity.java 98 private synchronized void setException(Exception e) {
124 setException(e);
144 setException(new Exception("Benchmark failed to run"));
161 setException(new Exception("Benchmark timed out"));
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
AsyncRunner.java 113 setException(result.exception);
120 setException(exception);
186 setException(null);
235 synchronized private void setException(Exception exception) {
  /prebuilts/misc/common/swig/include/2.0.11/d/
dhead.swg 87 &setException,
94 static void setException(char* message) {
189 &setException,
190 &setException,
191 &setException,
192 &setException,
193 &setException
197 static void setException(const char* message) {
  /packages/apps/Camera2/src/com/android/camera/device/
SingleDeviceRequest.java 75 mFuture.setException(throwable);
  /packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
CaptureSessionCreator.java 92 sessionFuture.setException(e);
  /packages/apps/Camera2/src/com/android/camera/one/v2/photo/
MetadataFuture.java 51 mMetadata.setException(new IllegalStateException("CaptureFailure.REASON_ERROR!"));
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
EventWithExceptionTest.java 78 int exceptionRequestId = setException();
137 int exceptionRequestId = setException();
227 int exceptionRequestId = setException();
298 int exceptionRequestId = setException();
358 int exceptionRequestId = setException();
409 private int setException() {
412 debuggeeWrapper.vmMirror.setException(getClassSignature(EXCEPTION_CLASS), true,
  /prebuilts/tools/common/m2/repository/org/eclipse/aether/aether-spi/1.0.2.v20150114/
aether-spi-1.0.2.v20150114.jar 
  /frameworks/native/libs/binder/
Status.cpp 128 void Status::setException(int32_t ex, const String8& message) {
135 setException(EX_SERVICE_SPECIFIC, message);
  /frameworks/native/include/binder/
Status.h 105 void setException(int32_t ex, const String8& message);

Completed in 487 milliseconds

1 2 3 4 5 6 7 8