Home
last modified time | relevance | path

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

123456789

/external/guava/guava/src/com/google/common/io/
DCloser.java238 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/
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)
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
Dsuppfreecollision.vgtest2 # suppressed, the other considered dangerous, and the user does
7 # So, the nondangerous suppressed error "absorbs and hides" the dangerous
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)
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_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)
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_dflt.stderr.exp6433 For counts of detected and suppressed errors, rerun with: -v
34 ERROR SUMMARY: 4 errors from 4 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.java351 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 …]
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/skia/src/animator/
DSkScript.cpp369 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 …]
DSkScript.h201 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/
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/opencv/cv/src/
Dcvdominants.cpp291 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/
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/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/clang/test/Analysis/inlining/
Dinline-defensive-checks.m99 // 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/
Ddirect-ivar-assignment-in-annotated-functions.m38 @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/
Dpreen_invars.stderr.exp-glibc28-amd649 ERROR SUMMARY: 1 errors from 1 contexts (suppressed: 0 from 0)
/external/valgrind/drd/tests/
Dpth_detached3.stderr.exp112 ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
/external/valgrind/memcheck/tests/ppc32/
Dpower_ISA2_07.stderr.exp9 For counts of detected and suppressed errors, rerun with: -v

123456789