Home
last modified time | relevance | path

Searched refs:suppressed (Results 1 – 25 of 295) sorted by relevance

12345678910>>...12

/external/desugar/java/com/google/devtools/build/android/desugar/runtime/
DThrowableExtension.java75 public static void addSuppressed(Throwable receiver, Throwable suppressed) { in addSuppressed() argument
76 STRATEGY.addSuppressed(receiver, suppressed); in addSuppressed()
136 public abstract void addSuppressed(Throwable receiver, Throwable suppressed); in addSuppressed() argument
151 public void addSuppressed(Throwable receiver, Throwable suppressed) { in addSuppressed() argument
152 receiver.addSuppressed(suppressed); in addSuppressed()
187 public void addSuppressed(Throwable receiver, Throwable suppressed) { in addSuppressed() argument
188 if (suppressed == receiver) { in addSuppressed()
189 throw new IllegalArgumentException("Self suppression is not allowed.", suppressed); in addSuppressed()
191 if (suppressed == null) { in addSuppressed()
195 map.get(receiver, /*createOnAbsence=*/true).add(suppressed); in addSuppressed()
[all …]
/external/guava/guava/src/com/google/common/io/
DCloser.java239 void suppress(Closeable closeable, Throwable thrown, Throwable suppressed); in suppress() argument
250 public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) { in suppress() argument
253 "Suppressing exception thrown when closing " + closeable, suppressed); in suppress()
280 public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) { in suppress() argument
282 if (thrown == suppressed) { in suppress()
286 addSuppressed.invoke(thrown, suppressed); in suppress()
289 LoggingSuppressor.INSTANCE.suppress(closeable, thrown, suppressed); in suppress()
/external/valgrind/memcheck/tests/
Dleak_cpp_interior.stderr.exp-solaris18 suppressed: 0 bytes in 0 blocks
33 suppressed: 0 (+0) bytes in 0 (+0) blocks
45 suppressed: 0 (+0) bytes in 0 (+0) blocks
57 suppressed: 0 (+0) bytes in 0 (+0) blocks
69 suppressed: 0 (+0) bytes in 0 (+0) blocks
83 suppressed: 0 (+0) bytes in 0 (+0) blocks
97 suppressed: 0 (+0) bytes in 0 (+0) blocks
111 suppressed: 0 (+0) bytes in 0 (+0) blocks
141 For counts of detected and suppressed errors, rerun with: -v
142 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
Dleak_cpp_interior.stderr.exp-64bit18 suppressed: 0 bytes in 0 blocks
33 suppressed: 0 (+0) bytes in 0 (+0) blocks
45 suppressed: 0 (+0) bytes in 0 (+0) blocks
57 suppressed: 0 (+0) bytes in 0 (+0) blocks
69 suppressed: 0 (+0) bytes in 0 (+0) blocks
83 suppressed: 0 (+0) bytes in 0 (+0) blocks
97 suppressed: 0 (+0) bytes in 0 (+0) blocks
111 suppressed: 0 (+0) bytes in 0 (+0) blocks
141 For counts of detected and suppressed errors, rerun with: -v
142 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
Dleak_cpp_interior.stderr.exp-64bit-solaris18 suppressed: 0 bytes in 0 blocks
33 suppressed: 0 (+0) bytes in 0 (+0) blocks
45 suppressed: 0 (+0) bytes in 0 (+0) blocks
57 suppressed: 0 (+0) bytes in 0 (+0) blocks
69 suppressed: 0 (+0) bytes in 0 (+0) blocks
83 suppressed: 0 (+0) bytes in 0 (+0) blocks
97 suppressed: 0 (+0) bytes in 0 (+0) blocks
111 suppressed: 0 (+0) bytes in 0 (+0) blocks
141 For counts of detected and suppressed errors, rerun with: -v
142 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
Daddressable.stderr.exp9 For counts of detected and suppressed errors, rerun with: -v
38 For counts of detected and suppressed errors, rerun with: -v
47 For counts of detected and suppressed errors, rerun with: -v
61 For counts of detected and suppressed errors, rerun with: -v
80 For counts of detected and suppressed errors, rerun with: -v
90 For counts of detected and suppressed errors, rerun with: -v
Dpartiallydefinedeq.stderr.exp318 For counts of detected and suppressed errors, rerun with: -v
20 ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
Dsuppfreecollision.vgtest2 # suppressed, the other considered dangerous, and the user does
7 # So, the nondangerous suppressed error "absorbs and hides" the dangerous
Dpartiallydefinedeq.stderr.exp422 For counts of detected and suppressed errors, rerun with: -v
24 ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 0 from 0)
Dpartiallydefinedeq.stderr.exp222 For counts of detected and suppressed errors, rerun with: -v
24 ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 0 from 0)
Dpartial_load_dflt.stderr.exp6427 For counts of detected and suppressed errors, rerun with: -v
28 ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 0 from 0)
Dbadjump.stderr.exp-kfail22 For counts of detected and suppressed errors, rerun with: -v
23 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
Dpartial_load_ok.stderr.exp6427 For counts of detected and suppressed errors, rerun with: -v
28 ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 0 from 0)
Dpartial_load_dflt.stderr.expr-s390x-mvc33 For counts of detected and suppressed errors, rerun with: -v
34 ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 0 from 0)
/external/guava/guava-tests/test/com/google/common/io/
DCloserTest.java352 ImmutableSet<Throwable> suppressed = ImmutableSet.copyOf(getSuppressed(thrownException)); in testSuppressingSuppressorIfPossible() local
353 assertEquals(2, suppressed.size()); in testSuppressingSuppressorIfPossible()
355 assertEquals(ImmutableSet.of(c1Exception, c2Exception), suppressed); in testSuppressingSuppressorIfPossible() local
389 public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) { in suppress() argument
390 suppressions.add(new Suppression(closeable, thrown, suppressed)); in suppress()
400 private final Throwable suppressed; field in CloserTest.Suppression
402 private Suppression(Closeable closeable, Throwable thrown, Throwable suppressed) { in Suppression() argument
405 this.suppressed = suppressed; in Suppression()
414 && suppressed.equals(other.suppressed); in equals()
421 return Objects.hashCode(closeable, thrown, suppressed); in hashCode()
[all …]
DCharSourceTest.java289 int suppressed = runSuppressionFailureTest(in, newNormalCharSink()); in testCopyExceptions() local
290 assertEquals(0, suppressed); in testCopyExceptions()
292 suppressed = runSuppressionFailureTest(in, BROKEN_CLOSE_SINK); in testCopyExceptions()
293 assertEquals((in == BROKEN_OPEN_SOURCE) ? 0 : 1, suppressed); in testCopyExceptions()
297 int suppressed = runSuppressionFailureTest(newNormalCharSource(), out); in testCopyExceptions() local
298 assertEquals(0, suppressed); in testCopyExceptions()
300 suppressed = runSuppressionFailureTest(BROKEN_CLOSE_SOURCE, out); in testCopyExceptions()
301 assertEquals(1, suppressed); in testCopyExceptions()
306 int suppressed = runSuppressionFailureTest(in, out); in testCopyExceptions() local
307 assertTrue(suppressed <= 1); in testCopyExceptions()
DByteSourceTest.java365 int suppressed = runSuppressionFailureTest(in, newNormalByteSink()); in testCopyExceptions() local
366 assertEquals(0, suppressed); in testCopyExceptions()
368 suppressed = runSuppressionFailureTest(in, BROKEN_CLOSE_SINK); in testCopyExceptions()
369 assertEquals((in == BROKEN_OPEN_SOURCE) ? 0 : 1, suppressed); in testCopyExceptions()
373 int suppressed = runSuppressionFailureTest(newNormalByteSource(), out); in testCopyExceptions() local
374 assertEquals(0, suppressed); in testCopyExceptions()
376 suppressed = runSuppressionFailureTest(BROKEN_CLOSE_SOURCE, out); in testCopyExceptions()
377 assertEquals(1, suppressed); in testCopyExceptions()
382 int suppressed = runSuppressionFailureTest(in, out); in testCopyExceptions() local
383 assertTrue(suppressed <= 1); in testCopyExceptions()
/external/libchrome/base/third_party/valgrind/
Dmemcheck.h205 #define VALGRIND_COUNT_LEAKS(leaked, dubious, reachable, suppressed) \ argument
222 suppressed = _qzz_suppressed; \
227 #define VALGRIND_COUNT_LEAK_BLOCKS(leaked, dubious, reachable, suppressed) \ argument
244 suppressed = _qzz_suppressed; \
/external/valgrind/memcheck/
Dmemcheck.h214 #define VALGRIND_COUNT_LEAKS(leaked, dubious, reachable, suppressed) \ argument
231 suppressed = _qzz_suppressed; \
236 #define VALGRIND_COUNT_LEAK_BLOCKS(leaked, dubious, reachable, suppressed) \ argument
253 suppressed = _qzz_suppressed; \
/external/r8/src/test/examplesAndroidO/trywithresources/
DTryWithResources.java44 Throwable[] suppressed = e.getSuppressed(); in dumpException() local
45 for (int i = 0; i < suppressed.length; i++) { in dumpException()
46 dumpException(suppressed[i], indent + "supp[" + i + "]: "); in dumpException()
160 for (Throwable suppressed : e.getSuppressed()) { in test()
161 re.addSuppressed(suppressed); in test()
/external/valgrind/gdbserver_tests/
Dmcmain_pic.stderr.exp-solaris5 For counts of detected and suppressed errors, rerun with: -v
6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/valgrind/memcheck/tests/linux/
Dcapget.stderr.exp214 For counts of detected and suppressed errors, rerun with: -v
15 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/v8/tools/clang/plugins/
DSuppressibleDiagnosticBuilder.h22 bool suppressed) in SuppressibleDiagnosticBuilder() argument
25 suppressed_(suppressed) {} in SuppressibleDiagnosticBuilder()
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
DRouteException.java53 private void addSuppressedIfPossible(IOException e, IOException suppressed) { in addSuppressedIfPossible() argument
56 addSuppressedExceptionMethod.invoke(e, suppressed); in addSuppressedIfPossible()
/external/conscrypt/openjdk/src/main/java/org/conscrypt/
DNativeLibraryLoader.java378 IOException suppressed = null; in createTempFile() local
392 suppressed = e; in createTempFile()
395 if (suppressed != null) { in createTempFile()
396 throw suppressed; in createTempFile()

12345678910>>...12