HomeSort by relevance Sort by last modified time
    Searched full:setexception (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /frameworks/base/core/tests/coretests/src/android/animation/
FutureWaiter.java 24 * also exposes the protected {@link AbstractFuture#setException(Throwable)} method.
37 public boolean setException(Throwable throwable) {
38 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));
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"));
AbstractFutureTest.java 49 setException(failure);
110 future.setException(new IllegalArgumentException("failure"));
112 errorMessage.set("SetException call exited before future was complete.");
FuturesTest.java 598 future1.setException(exception);
651 future2.setException(new Throwable("failed2"));
821 delayedFailed.setException(new Exception());
    [all...]
  /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) {
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptvalueiterator_p.h 121 engine()->setException(exception);
131 engine()->setException(exception);
140 engine()->setException(exception);
qscriptengine_p.h 60 inline void setException(JSValueRef exception, const /* SetExceptionFlags */ unsigned flags = IgnoreNullException);
115 setException(exception, NotNullException);
134 void QScriptEnginePrivate::setException(JSValueRef exception, const /* SetExceptionFlags */ unsigned flags)
qscriptengine_p.cpp 142 setException(exception, NotNullException);
156 setException(exception, NotNullException);
qscriptvalue_p.h 502 m_engine->setException(exception);
519 m_engine->setException(exception);
655 m_engine->setException(exception, QScriptEnginePrivate::NotNullException);
691 m_engine->setException(exception, QScriptEnginePrivate::NotNullException);
793 m_engine->setException(exception);
840 m_engine->setException(exception);
958 m_engine->setException(exception, QScriptEnginePrivate::NotNullException);
    [all...]
  /external/webkit/Source/WebKit/win/
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...]
DOMCSSClasses.h 78 virtual HRESULT STDMETHODCALLTYPE setException(
79 /* [in] */ BSTR description) { return DOMObject::setException(description); }
WebScriptObject.h 71 virtual HRESULT STDMETHODCALLTYPE setException(
DOMCoreClasses.h 76 virtual HRESULT STDMETHODCALLTYPE setException(
77 /* [in] */ BSTR description) { return WebScriptObject::setException(description); }
123 virtual HRESULT STDMETHODCALLTYPE setException(
124 /* [in] */ BSTR description) { return DOMObject::setException(description); }
289 virtual HRESULT STDMETHODCALLTYPE setException(
290 /* [in] */ BSTR description) { return DOMObject::setException(description); }
347 virtual HRESULT STDMETHODCALLTYPE setException(
348 /* [in] */ BSTR description) { return DOMNode::setException(description); }
578 virtual HRESULT STDMETHODCALLTYPE setException(
579 /* [in] */ BSTR description) { return DOMNode::setException(description);
    [all...]
  /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);
  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 123 protected void setException(Throwable t) {
307 setException(ex);
326 setException(ex);
  /external/webkit/Source/WebCore/bindings/js/
WorkerScriptController.h 62 void setException(ScriptValue);
  /external/webkit/Source/WebCore/bindings/v8/
WorkerScriptController.h 57 void setException(ScriptValue);

Completed in 2573 milliseconds

1 2 3 4