Searched defs:suppressed (Results 1 - 9 of 9) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DRouteException.java53 private void addSuppressedIfPossible(IOException e, IOException suppressed) { argument
56 addSuppressedExceptionMethod.invoke(e, suppressed);
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_test_util_linux.cc61 bool OnReport(const ReportDesc *rep, bool suppressed) { argument
/external/guava/guava/src/com/google/common/io/
H A DCloser.java40 * thrown exception as a suppressed exception.
73 * (because another exception is already being thrown) is <i>suppressed</i>.</li>
76 * <p>An exception that is suppressed is not thrown. The method of suppression used depends on the
80 * <li><b>Java 7+:</b> Exceptions are suppressed by adding them to the exception that <i>will</i>
82 * <li><b>Java 6:</b> Exceptions are suppressed by logging them instead.</li>
201 * any exceptions thrown when attempting to close a closeable will be suppressed. Otherwise, the
203 * additional exceptions that are thrown after that will be suppressed.
234 * Suppresses the given exception ({@code suppressed}) which was thrown when attempting to close
238 void suppress(Closeable closeable, Throwable thrown, Throwable suppressed); argument
249 public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) { argument
279 suppress(Closeable closeable, Throwable thrown, Throwable suppressed) argument
[all...]
/external/guava/guava-tests/test/com/google/common/io/
H A DCloserTest.java351 ImmutableSet<Throwable> suppressed = ImmutableSet.copyOf(getSuppressed(thrownException));
352 assertEquals(2, suppressed.size());
354 assertEquals(ImmutableSet.of(c1Exception, c2Exception), suppressed);
374 * each such exception was suppressed because of the given thrown exception.
388 public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) { argument
389 suppressions.add(new Suppression(closeable, thrown, suppressed));
399 private final Throwable suppressed; field in class:CloserTest.Suppression
401 private Suppression(Closeable closeable, Throwable thrown, Throwable suppressed) { argument
404 this.suppressed = suppressed;
[all...]
/external/opencv/cv/src/
H A Dcvdominants.cpp291 int suppressed = 0; local
295 for( j = 1; (j <= ptInf[i].right_neigh) && (suppressed == 0); j++ )
298 suppressed = 1;
301 for( j = -1; (j >= ptInf[i].left_neigh) && (suppressed == 0); j-- )
307 suppressed = 1;
310 if( !suppressed )
H A Dcvsurf.cpp203 bool suppressed = false; local
225 suppressed = true;
229 if( !suppressed )
/external/skia/src/animator/
H A DSkScript.cpp269 *fOpStack.push() = kParen; // push even if eval is suppressed
369 bool SkScriptEngine::evaluateDot(const char*& script, bool suppressed) { argument
377 bool success = handleProperty(suppressed);
382 return evaluateDotParam(script, suppressed, field, fieldLength);
385 bool SkScriptEngine::evaluateDotParam(const char*& script, bool suppressed, argument
388 if (suppressed)
404 if (suppressed == false) {
412 if (success && suppressed == false &&
492 SkBool suppressed = fSuppressStack.top().fSuppress; local
495 bool success = innerScript(scriptPtr, suppressed
531 SkBool suppressed = fSuppressStack.top().fSuppress; local
806 bool suppressed = SkToBool(fSuppressStack.top().fSuppress); local
876 handleArrayIndexer(const char** scriptPtr, bool suppressed) argument
934 handleFunction(const char** scriptPtr, bool suppressed) argument
1027 handleProperty(bool suppressed) argument
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_report.cc50 bool OnReport(const ReportDesc *rep, bool suppressed);
53 bool WEAK OnReport(const ReportDesc *rep, bool suppressed) { argument
55 return suppressed;
507 bool suppressed = OnReport(rep, suppress_pc != 0); local
509 if (suppressed)
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...

Completed in 333 milliseconds