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

1 2

  /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) {
Futures.java 131 future.setException(throwable);
725 setException(e.getCause());
    [all...]
  /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...]
  /cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/reference/
GLReferenceActivity.java 60 private synchronized void setException(Exception e) {
74 setException(new Exception("Benchmark failed to run"));
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ExceptionState.cpp 65 setException(V8ThrowException::createDOMException(ec, processedMessage, m_creationContext, m_isolate));
77 setException(V8ThrowException::createDOMException(SecurityError, finalSanitized, finalUnsanitized, m_creationContext, m_isolate));
80 void ExceptionState::setException(v8::Handle<v8::Value> exception)
102 setException(V8ThrowException::createTypeError(addExceptionContext(message), m_isolate));
110 setException(V8ThrowException::createRangeError(addExceptionContext(message), m_isolate));
ExceptionState.h 107 setException(value);
118 void setException(v8::Handle<v8::Value>);
  /cts/suite/cts/deviceTests/opengl/src/com/android/cts/opengl/primitive/
GLPrimitiveActivity.java 99 private synchronized void setException(Exception e) {
132 setException(e);
165 setException(new Exception("Benchmark failed to run"));
176 setException(new Exception("Benchmark timed out"));
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/MultiSession/
ExceptionTest.java 61 logWriter.println("\n>> testExceptionEvent: => setException(...)...");
62 debuggeeWrapper.vmMirror.setException(exceptionSignature, isCatch,
64 logWriter.println(">> testExceptionEvent: setException(...) DONE");
  /external/chromium_org/content/renderer/npapi/
plugin_channel_host.cc 130 blink::WebBindings::setException(NULL, message.c_str());
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ExceptionTest.java 62 logWriter.println("\n>> testExceptionEvent: => setException(...)...");
63 debuggeeWrapper.vmMirror.setException(exceptionSignature, isCatch, isUncatch);
64 logWriter.println(">> testExceptionEvent: setException(...) DONE");
118 logWriter.println("\n>> testExceptionEventLocation: => setException(...)...");
119 debuggeeWrapper.vmMirror.setException(exceptionSignature, isCatch, isUncatch);
120 logWriter.println(">> testExceptionEventLocation: setException(...) DONE");
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorTest.java 71 public boolean setException(Throwable t) {
72 return super.setException(t);
95 done.setException(e);
  /external/chromium_org/third_party/WebKit/public/web/
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/
MockAccountManager.java 475 setException(e);
551 setException(e);
  /external/chromium_org/content/child/npapi/
npobject_util.cc 95 WebBindings::setException(obj, message_str.c_str());
120 host_funcs.setexception = NPN_SetExceptionPatch;
plugin_host.cc 152 host_funcs_.setexception = WebBindings::setException;
199 if (overrides->setexception)
200 host_funcs_.setexception = overrides->setexception;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebBindings.cpp 156 void WebBindings::setException(NPObject* object, const NPUTF8* message)
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java     [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
VmMirror.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.provider.filetransfer_3.1.0.v20100529-0735.jar 

Completed in 1526 milliseconds

1 2