HomeSort by relevance Sort by last modified time
    Searched refs:exception (Results 876 - 900 of 4445) sorted by null

<<31323334353637383940>>

  /external/guava/guava/src/com/google/common/util/concurrent/
AsyncSettableFuture.java 75 public boolean setException(Throwable exception) {
76 return setFuture(Futures.<V>immediateFailedFuture(exception));
  /external/guava/guava-testlib/src/com/google/common/testing/
ClusterException.java 33 * thingToRun.run(); // <-- say this may throw an exception, but you want to
43 * List&lt;Exception&gt; exceptions = Lists.newArrayList();
47 * } catch (Exception e) {
68 exceptions.size() + " exceptions were thrown. The first exception is listed as a cause.",
80 for (Throwable exception : exceptions) {
81 temp.add(exception);
91 * <li>If {@code exceptions} has a single exception and that exception is a
97 * the first exception in the {@code exceptions} collection.
  /external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
DumpMojo.java 110 protected void onConnectionFailure(final IOException exception) {
111 getLog().info(exception.getMessage());
  /external/junit/src/org/junit/internal/runners/
TestMethod.java 49 boolean isUnexpected(Throwable exception) {
50 return ! getExpectedException().isAssignableFrom(exception.getClass());
  /external/llvm/bindings/ocaml/bitreader/
llvm_bitreader.ml 10 exception Error of string
  /external/llvm/bindings/ocaml/irreader/
llvm_irreader.ml 11 exception Error of string
  /external/llvm/bindings/ocaml/linker/
llvm_linker.ml 10 exception Error of string
  /external/mockito/src/org/mockito/internal/stubbing/answers/
MethodInfo.java 26 for (Class<?> exception : exceptions) {
27 if (exception.isAssignableFrom(throwableClass)) {
  /external/v8/test/mjsunit/es6/debug-promises/
reject-with-throw-in-reject.js 8 // custom promise, which throws a new exception in its reject handler.
9 // We expect two Exception debug events:
11 // 2) when the custom reject closure in MyPromise throws an exception.
44 if (event == Debug.DebugEvent.Exception) {
47 assertEquals("reject", event_data.exception().message);
56 print("Unexpected exception: " + e + "\n" + e.stack);
  /external/v8/test/mjsunit/regress/
regress-1172-bis.js 28 // Verifies that exception thrown from JS accessors when attempting a call
32 var exception = false; variable
36 exception = true;
39 assertTrue(exception);
regress-3281.js 6 // Should not crash or raise an exception.
regress-crbug-505370.js 16 Error.prepareStackTrace = function(exception, frames) { return frames; };
regress-crbug-610207.js 5 Error.prepareStackTrace = function(exception, frames) {
regress-1081309.js 35 exception = false;
65 if (event == Debug.DebugEvent.Exception)
88 exception = e
100 // Break on the exception to do a backtrace with undefined as receiver.
105 // Ignore the exception "Cannot call method 'x' of undefined"
108 assertFalse(exception, "exception in listener", exception)
  /external/valgrind/gdbserver_tests/
mcsigpass.stdoutB.exp 14 Program received signal SIGFPE, Arithmetic exception.
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
ReceiverActivity.java 54 } catch (IOException exception) {
55 Log.e(MtpDocumentsProvider.TAG, "Failed to open device", exception);
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestSuiteBuilder.java 192 } catch (Exception exception) {
193 Log.i("TestSuiteBuilder", "Failed to create test.", exception);
195 suite.addTest(new FailedToCreateTests(exception));
228 private final Exception exception; field in class:TestSuiteBuilder.FailedToCreateTests
230 public FailedToCreateTests(Exception exception) {
232 this.exception = exception;
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
RuntimeExceptionTest.java 47 Throwable emptyThrowable = new Exception();
53 Throwable throwable = new Exception("msg");
54 RuntimeException exception = new RuntimeException(throwable); local
55 assertEquals(throwable.getClass().getName() + ": " + "msg", exception.getMessage());
  /prebuilts/misc/common/swig/include/2.0.11/mzscheme/
std_string.i 14 %include <exception.i>
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
role.py 19 from . import exception namespace
37 raise exception.InvalidRole("{0} is not a valid role".format(name))
  /prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.7/
velocity-1.7.jar 
  /external/ImageMagick/coders/
pango.c 51 #include "MagickCore/exception.h"
52 #include "MagickCore/exception-private.h"
94 % ExceptionInfo *exception)
100 % o exception: return any errors or warnings in this structure.
104 ExceptionInfo *exception)
181 assert(exception != (ExceptionInfo *) NULL);
182 assert(exception->signature == MagickCoreSignature);
183 image=AcquireImage(image_info,exception);
191 image_info->filename,exception);
195 exception);
    [all...]
icon.c 51 #include "MagickCore/exception.h"
52 #include "MagickCore/exception-private.h"
157 MagickOffsetType *count,ExceptionInfo *exception)
205 resized=ResizeImage(image,sizes[i],sizes[i],image->filter,exception);
236 % ExceptionInfo *exception)
242 % o exception: return any errors or warnings in this structure.
246 ExceptionInfo *exception)
288 assert(exception != (ExceptionInfo *) NULL);
289 assert(exception->signature == MagickCoreSignature);
290 image=AcquireImage(image_info,exception);
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/
LOC.py 19 import dns.exception namespace
32 raise dns.exception.SyntaxError("%s value out of bounds" % desc)
72 raise dns.exception.SyntaxError("bad %s exponent" % desc)
75 raise dns.exception.SyntaxError("bad %s base" % desc)
167 raise dns.exception.SyntaxError('bad latitude seconds value')
170 raise dns.exception.SyntaxError('latitude seconds >= 60')
173 raise dns.exception.SyntaxError('bad latitude milliseconds value')
188 raise dns.exception.SyntaxError('bad latitude hemisphere value')
198 raise dns.exception.SyntaxError('bad longitude seconds value')
201 raise dns.exception.SyntaxError('longitude seconds >= 60'
    [all...]
  /external/opencv3/modules/java/src/
core.cpp 24 /// throw java exception
25 static void throwJavaException(JNIEnv *env, const std::exception *e, const char *method) {
26 std::string what = "unknown exception";
30 std::string exception_type = "std::exception";
32 if(dynamic_cast<const cv::Exception*>(e)) {
33 exception_type = "cv::Exception";
40 if(!je) je = env->FindClass("java/lang/Exception");
66 } catch(const std::exception &e) {
91 } catch(const std::exception &e) {
116 } catch(const std::exception &e)
    [all...]

Completed in 2037 milliseconds

<<31323334353637383940>>