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

1 2 3 4

  /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);
AbstractService.java 203 startup.setException(cause);
204 shutdown.setException(new Exception(
207 shutdown.setException(cause);
209 shutdown.setException(new Exception("Service failed while running", cause));
AbstractFuture.java 41 * {@link #setException(Throwable)}. Subclasses may also override {@link
185 protected boolean setException(Throwable throwable) {
186 boolean result = sync.setException(checkNotNull(throwable));
327 boolean setException(Throwable t) {
  /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 73 mFuture.setException(new RuntimeException(e));
101 mFuture.setException(new RuntimeException(e));
236 mFuture.setException(new RuntimeException(e));
259 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));
375 mFuture.setException(new RuntimeException(e));
399 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 71 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);
68 inputFuture.setException(error);
ForwardingListenableFutureTest.java 65 delegate.setException(new Exception("failed"));
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
IncomingFileTransfer.java 76 setException(e);
140 setException(e);
145 setException(e);
174 setException(e);
OutgoingFileTransfer.java 237 setException(e);
240 setException(e);
291 setException(e);
304 setException(e);
307 setException(e);
344 setException(e);
415 protected void setException(Exception exception) {
416 super.setException(exception);
  /external/webkit/Source/WebCore/bindings/v8/
WorkerScriptController.h 57 void setException(ScriptValue);
WorkerScriptController.cpp 103 void WorkerScriptController::setException(ScriptValue exception)
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptvalueiterator_p.h 121 engine()->setException(exception);
131 engine()->setException(exception);
140 engine()->setException(exception);
  /external/webkit/Source/WebCore/bindings/js/
WorkerScriptController.h 62 void setException(ScriptValue);
  /external/webkit/Source/WebKit/win/
WebScriptObject.h 71 virtual HRESULT STDMETHODCALLTYPE setException(
DOMCSSClasses.h 78 virtual HRESULT STDMETHODCALLTYPE setException(
79 /* [in] */ BSTR description) { return DOMObject::setException(description); }
DOMEventsClasses.h 81 virtual HRESULT STDMETHODCALLTYPE setException(
82 /* [in] */ BSTR description) { return DOMObject::setException(description); }
132 virtual HRESULT STDMETHODCALLTYPE setException(
133 /* [in] */ BSTR description) { return DOMObject::setException(description); }
212 virtual HRESULT STDMETHODCALLTYPE setException(
213 /* [in] */ BSTR description) { return DOMObject::setException(description); }
321 virtual HRESULT STDMETHODCALLTYPE setException(
322 /* [in] */ BSTR description) { return DOMObject::setException(description); }
469 virtual HRESULT STDMETHODCALLTYPE setException(
470 /* [in] */ BSTR description) { return DOMObject::setException(description);
    [all...]
WebScriptObject.cpp 136 HRESULT STDMETHODCALLTYPE WebScriptObject::setException(
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
AsyncRunner.java 121 setException(result.exception);
128 setException(exception);
194 setException(null);
243 synchronized private void setException(Exception exception) {
  /external/webkit/Source/WebKit/win/Interfaces/
IWebScriptObject.idl 130 @method setException:
134 - (void)setException: (NSString *)description;
136 HRESULT setException([in] BSTR description);
  /external/smack/src/org/jivesoftware/smack/util/dns/
HostAddress.java 66 public void setException(Exception e) {
  /external/webkit/Source/WebCore/bindings/objc/
WebScriptObject.h 293 @method setException:
298 - (void)setException:(NSString *)description;

Completed in 535 milliseconds

1 2 3 4