HomeSort by relevance Sort by last modified time
    Searched defs:exception (Results 176 - 200 of 2214) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/fdlibm/
fdlibm.h 75 struct exception { struct
156 extern int ieee_matherr __P((struct exception *));
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineRunnable.java 55 Exception exception = null; local
59 } catch (Exception e) {
61 Log.v(TAG, "Exception decoding", e);
63 exception = e;
74 onLoadFailed(exception);
88 private void onLoadFailed(Exception e) {
97 private Resource<?> decode() throws Exception {
105 private Resource<?> decodeFromCache() throws Exception {
109 } catch (Exception e)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/util/
ExceptionCatchingInputStream.java 21 private IOException exception; field in class:ExceptionCatchingInputStream
76 exception = e;
88 exception = e;
105 exception = e;
117 exception = e;
128 return exception;
132 exception = null;
  /external/google-breakpad/src/processor/
exploitability_win.cc 77 MinidumpException *exception = dump_->GetException(); local
78 if (!exception) {
79 BPLOG(INFO) << "Minidump does not have exception record.";
83 const MDRawExceptionStream *raw_exception = exception->exception();
85 BPLOG(INFO) << "Could not obtain raw exception info.";
89 const MinidumpContext *context = exception->GetContext();
91 BPLOG(INFO) << "Could not obtain exception context.";
153 // These represent bugs in exception handlers.
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 196 * @param throwable the exception that the task failed with.
236 private Throwable exception; field in class:AbstractFuture.Sync
291 * on success, an exception on failure, a cancellation on cancellation, or
298 if (exception != null) {
299 throw new ExecutionException(exception);
307 "Task was cancelled.", exception);
345 * Transition to the COMPLETED state and set the exception.
367 * @param t the exception to set as the result of the computation.
375 // and exception and then release to the final state.
378 this.exception = ((finalState & (CANCELLED | INTERRUPTED)) != 0
392 CancellationException exception = new CancellationException(message); local
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
AbstractIteratorTest.java 73 fail("no exception thrown");
160 public void testSneakyThrow() throws Exception {
174 // The first time, the sneakily-thrown exception comes out
177 fail("No exception thrown");
178 } catch (Exception e) {
187 fail("No exception thrown");
193 final SomeUncheckedException exception = new SomeUncheckedException(); local
196 throw exception;
203 fail("No exception thrown");
205 assertSame(exception, e)
    [all...]
  /external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
SameThreadScheduledExecutorService.java 149 private ExecutionException exception; field in class:SameThreadScheduledExecutorService.ImmediateScheduledFuture
  /external/guava/guava-tests/test/com/google/common/base/
AbstractIteratorTest.java 75 fail("no exception thrown");
80 public void testSneakyThrow() throws Exception {
94 // The first time, the sneakily-thrown exception comes out
97 fail("No exception thrown");
98 } catch (Exception e) {
107 fail("No exception thrown");
113 final SomeUncheckedException exception = new SomeUncheckedException(); local
116 throw exception;
123 fail("No exception thrown");
125 assertSame(exception, e)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractIteratorTest.java 76 fail("no exception thrown");
174 public void testSneakyThrow() throws Exception {
188 // The first time, the sneakily-thrown exception comes out
191 fail("No exception thrown");
192 } catch (Exception e) {
201 fail("No exception thrown");
207 final SomeUncheckedException exception = new SomeUncheckedException(); local
210 throw exception;
217 fail("No exception thrown");
219 assertSame(exception, e)
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractIdleServiceTest.java 45 @Override protected void startUp() throws Exception {}
46 @Override protected void shutDown() throws Exception {}
49 public void testServiceStartStop() throws Exception {
57 public void testStart_failed() throws Exception {
58 final Exception exception = new Exception("deliberate"); local
60 @Override protected void startUp() throws Exception {
61 throw exception;
68 assertSame(exception, e.getCause())
74 final Exception exception = new Exception("deliberate"); local
101 final Exception exception = new Exception("deliberate"); local
143 final Exception exception = new Exception("deliberate"); local
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/tools/
ExecDumpClientTest.java 53 public ExpectedException exception = ExpectedException.none(); field in class:ExecDumpClientTest
65 protected void onConnectionFailure(IOException exception) {
138 exception.expect(IOException.class);
139 exception.expectMessage("Socket closed unexpectedly.");
  /external/linux-kselftest/tools/testing/selftests/powerpc/tm/
tm-unavailable.c 5 * Force FP, VEC and VSX unavailable exception during transaction in all
11 * VEC/Altivec registers on abortion due to an unavailable exception in TM.
41 int exception; member in struct:Flags
46 if (flags.touch_fp && flags.exception == FP_UNA_EXCEPTION)
49 if (flags.touch_vec && flags.exception == VEC_UNA_EXCEPTION)
54 * won't raise an exception. However since FP and VEC state are already
60 flags.exception == VSX_UNA_EXCEPTION)
107 if (flags.exception != FP_UNA_EXCEPTION &&
108 flags.exception != VEC_UNA_EXCEPTION &&
109 flags.exception != VSX_UNA_EXCEPTION)
323 int exception; \/* FP = 0, VEC = 1, VSX = 2 *\/ local
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
LZMAInputStream.java 64 private IOException exception = null; field in class:LZMAInputStream
405 // the exception too, so skip validating dictSize here.
453 * or an exception is thrown.
480 if (exception != null)
481 throw exception;
512 // The exception makes lzma.decode() miss the last range
549 exception = e;
SimpleInputStream.java 28 private IOException exception = null; field in class:SimpleInputStream
64 if (exception != null)
65 throw exception;
114 exception = e;
123 if (exception != null)
124 throw exception;
SimpleOutputStream.java 25 private IOException exception = null; field in class:SimpleOutputStream
52 if (exception != null)
53 throw exception;
75 exception = e;
94 if (exception != null)
95 throw exception;
100 exception = e;
119 exception = e;
129 // writePending() saves the possible exception so we can
139 // If there is an earlier exception, the exceptio
    [all...]
SingleXZInputStream.java 51 private IOException exception = null; field in class:SingleXZInputStream
252 * throw the pending exception.</li>
253 * <li>An exception is thrown.</li>
284 if (exception != null)
285 throw exception;
319 exception = e;
354 if (exception != null)
355 throw exception;
UncompressedLZMA2OutputStream.java 25 private IOException exception = null; field in class:UncompressedLZMA2OutputStream
51 if (exception != null)
52 throw exception;
68 exception = e;
82 if (exception != null)
83 throw exception;
94 exception = e;
100 if (exception != null)
101 throw exception;
112 exception = e
    [all...]
  /external/mockito/src/test/java/org/mockito/internal/verification/checkers/
NumberOfInvocationsCheckerTest.java 42 public ExpectedException exception = ExpectedException.none(); field in class:NumberOfInvocationsCheckerTest
48 public void shouldReportTooLittleActual() throws Exception {
52 exception.expect(TooLittleActualInvocations.class);
53 exception.expectMessage("mock.simpleMethod()");
54 exception.expectMessage("Wanted 100 times");
55 exception.expectMessage("But was 2 times");
61 public void shouldReportWithLastInvocationStackTrace() throws Exception {
65 exception.expect(TooLittleActualInvocations.class);
66 exception.expectMessage("mock.simpleMethod()");
67 exception.expectMessage("Wanted 100 times")
    [all...]
NumberOfInvocationsInOrderCheckerTest.java 39 public ExpectedException exception = ExpectedException.none(); field in class:NumberOfInvocationsInOrderCheckerTest
57 public void shouldPassIfChunkMatches() throws Exception {
64 public void shouldReportTooLittleInvocations() throws Exception {
71 exception.expect(VerificationInOrderFailure.class);
72 exception.expectMessage("mock.simpleMethod()");
73 exception.expectMessage("Wanted 4 times");
74 exception.expectMessage("But was 2 times");
80 public void shouldMarkAsVerifiedInOrder() throws Exception {
92 public void shouldReportTooLittleActual() throws Exception {
96 exception.expect(VerificationInOrderFailure.class)
    [all...]
  /external/mockito/src/test/java/org/mockitousage/verification/
VerificationAfterDelayTest.java 42 public ExpectedException exception = none(); field in class:VerificationAfterDelayTest
73 public void shouldVerifyNormallyWithSpecificTimes() throws Exception {
82 public void shouldVerifyNormallyWithAtLeast() throws Exception {
91 public void shouldFailVerificationWithWrongTimes() throws Exception {
97 exception.expect(MockitoAssertionError.class);
102 public void shouldWaitTheFullTimeIfTheTestCouldPass() throws Exception {
111 fail("Expected behavior was to throw an exception, and never reach this line");
119 public void shouldStopEarlyIfTestIsDefinitelyFailed() throws Exception {
124 exception.expect(MockitoAssertionError.class);
  /external/objenesis/tck/src/test/java/org/objenesis/tck/
TCKTest.java 150 public void exception(Exception exception) { method in class:TCKTest.RecordingReporter
151 log.append("exception()\n");
  /external/oj-libjdwp/src/share/back/
EventRequestImpl.c 8 * particular file as subject to the "Classpath" exception as provided
134 jclass exception; local
137 exception = inStream_readClassRef(env, in);
148 exception, caught, uncaught));
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/
GradleManifestFactoryTest.java 26 public ExpectedException exception = ExpectedException.none(); field in class:GradleManifestFactoryTest
58 public void getAppManifest_withOverriddenConfigAssetDir_shouldCreateManifest() throws Exception {
72 public void getAppManifest_withOverriddenConfigManifest_shouldCreateManifest() throws Exception {
86 public void getAppManifest_forApplications_shouldCreateManifest() throws Exception {
98 public void getAppManifest_forLibraries_shouldCreateManifest() throws Exception {
114 public void getAppManifest_forAaptLibraries_shouldCreateManifest() throws Exception {
131 public void getAppManifest_shouldCreateManifestWithMethodOverrides() throws Exception {
142 public void getAppManifest_withBuildDirOverride_shouldCreateManifest() throws Exception {
155 public void getAppManifest_withPackageNameOverride_shouldCreateManifest() throws Exception {
168 public void getAppManifest_withAbiSplitOverride_shouldCreateManifest() throws Exception {
    [all...]
  /external/sl4a/Utils/src/com/trilead/ssh2/
StreamGobbler.java 92 exception = e;
108 private IOException exception = null; field in class:StreamGobbler
150 if (exception != null) {
151 throw exception;
219 if (exception != null) {
220 throw exception;
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/
ProjectConverter.java 42 private List<ConversionException> exception; field in class:ProjectConverter
110 if (exception == null) {
111 exception = new ArrayList<ConversionException>();
113 exception.add(exc);
117 if (exception != null) {
118 Iterator<ConversionException> iterator = exception.iterator();
123 exception = null;

Completed in 1231 milliseconds

1 2 3 4 5 6 78 91011>>