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

1 2 3

  /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));
237 mFuture.setException(new RuntimeException(e));
260 mFuture.setException(new RuntimeException(e));
283 mFuture.setException(new RuntimeException(e));
306 mFuture.setException(new RuntimeException(e));
329 mFuture.setException(new RuntimeException(e));
352 mFuture.setException(new RuntimeException(e));
376 mFuture.setException(new RuntimeException(e));
400 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/src/com/google/common/util/concurrent/
ValueFuture.java 63 public boolean setException(Throwable t) {
64 return super.setException(t);
AbstractFuture.java 36 * methods {@link #set(Object)}, {@link #setException(Throwable)}, or
121 protected boolean setException(Throwable throwable) {
122 boolean result = sync.setException(throwable);
289 boolean setException(Throwable t) {
Futures.java 187 future.setException(throwable);
446 setException(e.getCause());
461 setException(e.getCause());
467 setException(e.getCause());
471 setException(e);
475 setException(e);
  /external/webkit/Source/WebCore/bindings/v8/
WorkerScriptController.h 57 void setException(ScriptValue);
WorkerScriptController.cpp 103 void WorkerScriptController::setException(ScriptValue exception)
ScriptState.h 50 void setException(v8::Local<v8::Value> exception)
V8NodeFilterCondition.cpp 89 state->setException(exceptionCatcher.Exception());
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptvalueiterator_p.h 121 engine()->setException(exception);
131 engine()->setException(exception);
140 engine()->setException(exception);
qscriptengine_p.cpp 142 setException(exception, NotNullException);
156 setException(exception, NotNullException);
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)
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/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(
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...]
  /system/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/objc/
WebScriptObject.h 293 @method setException:
298 - (void)setException:(NSString *)description;

Completed in 1164 milliseconds

1 2 3