/external/smack/src/org/jivesoftware/smackx/filetransfer/ |
D | OutgoingFileTransfer.java | 237 setException(e); in sendFile() 240 setException(e); in sendFile() 291 setException(e); in sendStream() 304 setException(e); in sendStream() 307 setException(e); in sendStream() 344 setException(e); in handleXMPPException() 415 protected void setException(Exception exception) { in setException() method in OutgoingFileTransfer 416 super.setException(exception); in setException()
|
D | IncomingFileTransfer.java | 76 setException(e); in recieveFile() 140 setException(e); in recieveFile() 145 setException(e); in recieveFile() 174 setException(e); in handleXMPPException()
|
D | FileTransfer.java | 187 protected void setException(Exception exception) { in setException() method in FileTransfer
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
D | SettableFutureTest.java | 56 assertTrue(future.setException(new Exception("failure"))); in testSetFailure() 62 future.setException(null); in testSetFailureNull() 67 assertTrue(future.setException(new Exception("failure"))); in testSetFailureNull()
|
D | AbstractChainedListenableFutureTest.java | 61 inputFuture.setException(EXCEPTION); in testFutureGetThrowsWrappedException() 68 inputFuture.setException(error); in testFutureGetThrowsWrappedError()
|
D | AbstractFutureTest.java | 49 setException(failure); in testException() 110 future.setException(new IllegalArgumentException("failure")); in testCompletionFinishesWithDone()
|
D | ForwardingListenableFutureTest.java | 65 delegate.setException(new Exception("failed")); in testFailedFuture()
|
D | FuturesTest.java | 598 future1.setException(exception); 651 future2.setException(new Throwable("failed2")); 821 delayedFailed.setException(new Exception()); 1165 future1.setException(new Throwable("failed1")); 1186 future1.setException(new Throwable("failed1")); 1189 future2.setException(new Throwable("failed2")); 1232 future2.setException(new Throwable("failed2")); 1287 future.setException(new IOException("checked")); 1407 future.setException(new Exception("failed")); 1466 future.setException(new Exception("failed")); [all …]
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | ExceptionState.cpp | 58 …setException(V8ThrowException::createDOMException(ec, processedMessage, m_creationContext, m_isola… in throwDOMException() 70 …setException(V8ThrowException::createDOMException(SecurityError, finalSanitized, finalUnsanitized,… in throwSecurityError() 73 void ExceptionState::setException(v8::Handle<v8::Value> exception) in setException() function in WebCore::ExceptionState 95 setException(V8ThrowException::createTypeError(addExceptionContext(message), m_isolate)); in throwTypeError()
|
D | ExceptionState.h | 101 setException(value); in rethrowV8Exception() 112 void setException(v8::Handle<v8::Value>);
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
D | AbstractService.java | 203 startup.setException(cause); in notifyFailed() 204 shutdown.setException(new Exception( in notifyFailed() 207 shutdown.setException(cause); in notifyFailed() 209 shutdown.setException(new Exception("Service failed while running", cause)); in notifyFailed()
|
D | SettableFuture.java | 67 public boolean setException(Throwable throwable) { in setException() method in SettableFuture 68 return super.setException(throwable); in setException()
|
D | AbstractFuture.java | 185 protected boolean setException(Throwable throwable) { in setException() method in AbstractFuture 186 boolean result = sync.setException(checkNotNull(throwable)); in setException() 327 boolean setException(Throwable t) { in setException() method in AbstractFuture.Sync
|
D | Futures.java | 131 future.setException(throwable); 725 setException(e.getCause()); 758 setException(e.getCause()); 767 setException(e.getCause()); 771 setException(e); 774 setException(e); 1379 setException(e.getCause()); 1383 setException(e); 1387 setException(e);
|
/external/chromium_org/content/renderer/pepper/ |
D | message_channel.cc | 476 WebBindings::setException( in PostBlockingMessageToNative() 493 WebBindings::setException( in PostBlockingMessageToNative() 513 WebBindings::setException( in PostBlockingMessageToNative() 526 WebBindings::setException( in PostBlockingMessageToNative() 538 WebBindings::setException( in PostBlockingMessageToNative()
|
D | npapi_glue.cc | 237 WebBindings::setException(object_var_, kInvalidPluginValue); in SetResult() 280 WebBindings::setException(object_var_, string->value().c_str()); in ThrowException()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/ |
D | ExceptionTest.java | 63 debuggeeWrapper.vmMirror.setException(exceptionSignature, isCatch, isUncatch); in testExceptionEvent() 119 debuggeeWrapper.vmMirror.setException(exceptionSignature, isCatch, isUncatch); in testExceptionEventLocation()
|
/external/smack/src/org/jivesoftware/smack/util/dns/ |
D | HostAddress.java | 66 public void setException(Exception e) { in setException() method in HostAddress
|
/external/chromium_org/content/renderer/npapi/ |
D | plugin_channel_host.cc | 130 blink::WebBindings::setException(NULL, message.c_str()); in OnSetException()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/ |
D | ExceptionTest.java | 62 debuggeeWrapper.vmMirror.setException(exceptionSignature, isCatch, in testException001()
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebBindings.h | 121 BLINK_EXPORT static void setException(NPObject*, const NPUTF8* message);
|
/external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/ |
D | MockAccountManager.java | 456 setException(e); 532 setException(e);
|
/external/chromium_org/content/child/npapi/ |
D | npobject_util.cc | 95 WebBindings::setException(obj, message_str.c_str()); in NPN_SetExceptionPatch()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebBindings.cpp | 158 void WebBindings::setException(NPObject* object, const NPUTF8* message) in setException() function in blink::WebBindings
|
/external/guava/guava/src/com/google/common/cache/ |
D | LocalCache.java | 2367 loadingValueReference.setException(t); in loadAsync() 3530 public boolean setException(Throwable t) { in setException() method in LocalCache.LoadingValueReference 3531 return setException(futureValue, t); in setException() 3534 private static boolean setException(SettableFuture<?> future, Throwable t) { in setException() method in LocalCache.LoadingValueReference 3536 return future.setException(t); in setException() 3545 setException(future, t); in fullyFailedFuture() 3576 return setException(t) ? futureValue : fullyFailedFuture(t); in loadFuture()
|