/external/guava/guava/src/com/google/common/io/ |
D | Closer.java | 238 void suppress(Closeable closeable, Throwable thrown, Throwable suppressed); in suppress() argument 249 public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) { in suppress() argument 252 "Suppressing exception thrown when closing " + closeable, suppressed); in suppress() 279 public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) { in suppress() argument 281 if (thrown == suppressed) { in suppress() 285 addSuppressed.invoke(thrown, suppressed); in suppress() 288 LoggingSuppressor.INSTANCE.suppress(closeable, thrown, suppressed); in suppress()
|
/external/valgrind/memcheck/tests/ |
D | leak_cpp_interior.stderr.exp-64bit | 18 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)
|
D | addressable.stderr.exp | 9 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
|
D | suppfreecollision.vgtest | 2 # suppressed, the other considered dangerous, and the user does 7 # So, the nondangerous suppressed error "absorbs and hides" the dangerous
|
D | partiallydefinedeq.stderr.exp3 | 18 For counts of detected and suppressed errors, rerun with: -v 20 ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
|
D | partiallydefinedeq.stderr.exp4 | 22 For counts of detected and suppressed errors, rerun with: -v 24 ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 0 from 0)
|
D | partiallydefinedeq.stderr.exp2 | 22 For counts of detected and suppressed errors, rerun with: -v 24 ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 0 from 0)
|
D | partial_load_ok.stderr.exp64 | 27 For counts of detected and suppressed errors, rerun with: -v 28 ERROR SUMMARY: 3 errors from 3 contexts (suppressed: 0 from 0)
|
D | badjump.stderr.exp-kfail | 22 For counts of detected and suppressed errors, rerun with: -v 23 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
|
D | partial_load_dflt.stderr.exp64 | 33 For counts of detected and suppressed errors, rerun with: -v 34 ERROR SUMMARY: 4 errors from 4 contexts (suppressed: 0 from 0)
|
D | partial_load_dflt.stderr.expr-s390x-mvc | 33 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/ |
D | CloserTest.java | 351 ImmutableSet<Throwable> suppressed = ImmutableSet.copyOf(getSuppressed(thrownException)); in testSuppressingSuppressorIfPossible() local 352 assertEquals(2, suppressed.size()); in testSuppressingSuppressorIfPossible() 354 assertEquals(ImmutableSet.of(c1Exception, c2Exception), suppressed); in testSuppressingSuppressorIfPossible() local 388 public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) { in suppress() argument 389 suppressions.add(new Suppression(closeable, thrown, suppressed)); in suppress() 399 private final Throwable suppressed; field in CloserTest.Suppression 401 private Suppression(Closeable closeable, Throwable thrown, Throwable suppressed) { in Suppression() argument 404 this.suppressed = suppressed; in Suppression() 413 && suppressed.equals(other.suppressed); in equals() 420 return Objects.hashCode(closeable, thrown, suppressed); in hashCode() [all …]
|
D | CharSourceTest.java | 289 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()
|
D | ByteSourceTest.java | 365 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/skia/src/animator/ |
D | SkScript.cpp | 369 bool SkScriptEngine::evaluateDot(const char*& script, bool suppressed) { in evaluateDot() argument 377 bool success = handleProperty(suppressed); in evaluateDot() 382 return evaluateDotParam(script, suppressed, field, fieldLength); in evaluateDot() 385 bool SkScriptEngine::evaluateDotParam(const char*& script, bool suppressed, in evaluateDotParam() argument 388 if (suppressed) in evaluateDotParam() 404 if (suppressed == false) { in evaluateDotParam() 412 if (success && suppressed == false && in evaluateDotParam() 492 SkBool suppressed = fSuppressStack.top().fSuppress; in functionParams() local 495 bool success = innerScript(scriptPtr, suppressed ? NULL : &value); in functionParams() 500 if (suppressed) in functionParams() [all …]
|
D | SkScript.h | 201 bool evaluateDot(const char*& script, bool suppressed); 202 …bool evaluateDotParam(const char*& script, bool suppressed, const char* field, size_t fieldLength); 204 bool handleArrayIndexer(const char** scriptPtr, bool suppressed); 206 bool handleFunction(const char** scriptPtr, bool suppressed); 210 bool handleProperty(bool suppressed);
|
/external/valgrind/memcheck/ |
D | memcheck.h | 214 #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/opencv/cv/src/ |
D | cvdominants.cpp | 291 int suppressed = 0; in icvFindDominantPointsIPAN() local 295 for( j = 1; (j <= ptInf[i].right_neigh) && (suppressed == 0); j++ ) in icvFindDominantPointsIPAN() 298 suppressed = 1; in icvFindDominantPointsIPAN() 301 for( j = -1; (j >= ptInf[i].left_neigh) && (suppressed == 0); j-- ) in icvFindDominantPointsIPAN() 307 suppressed = 1; in icvFindDominantPointsIPAN() 310 if( !suppressed ) in icvFindDominantPointsIPAN()
|
/external/valgrind/memcheck/tests/linux/ |
D | capget.stderr.exp2 | 14 For counts of detected and suppressed errors, rerun with: -v 15 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | RouteException.java | 53 private void addSuppressedIfPossible(IOException e, IOException suppressed) { in addSuppressedIfPossible() argument 56 addSuppressedExceptionMethod.invoke(e, suppressed); in addSuppressedIfPossible()
|
/external/clang/test/Analysis/inlining/ |
D | inline-defensive-checks.m | 99 // The warning is not suppressed because the receiver being nil is not 111 // The warning is not suppressed because the receiver being nil is not 123 // The warning is not suppressed because the receiver being nil is not
|
/external/clang/test/Analysis/objc/ |
D | direct-ivar-assignment-in-annotated-functions.m | 38 @property (assign) MyClass* NotA; // warnings should be suppressed, backing ivar is annotated 39 …__((annotate("objc_allow_direct_instance_variable_assignment"))); // warnings should be suppressed
|
/external/valgrind/exp-sgcheck/tests/ |
D | preen_invars.stderr.exp-glibc28-amd64 | 9 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
|
/external/valgrind/drd/tests/ |
D | pth_detached3.stderr.exp1 | 12 ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
|
/external/valgrind/memcheck/tests/ppc32/ |
D | power_ISA2_07.stderr.exp | 9 For counts of detected and suppressed errors, rerun with: -v
|