HomeSort by relevance Sort by last modified time
    Searched defs:suppressed (Results 1 - 25 of 49) sorted by null

1 2

  /external/opencv/cv/src/
cvdominants.cpp 291 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 )
cvsurf.cpp 203 bool suppressed = false; local
225 suppressed = true;
229 if( !suppressed )
  /libcore/luni/src/test/java/libcore/java/lang/
ThrowableTest.java 148 throwable.addSuppressed(newThrowable("Suppressed", "A", "B", "E", "F"));
149 throwable.addSuppressed(newThrowable("Suppressed", "A", "B", "G", "H"));
154 + "\tSuppressed: java.lang.Throwable: Suppressed\n"
158 + "\tSuppressed: java.lang.Throwable: Suppressed\n"
171 Throwable suppressed = newThrowable("Suppressed", "A", "B", "E", "F"); local
173 throwable.addSuppressed(suppressed);
174 suppressed.addSuppressed(newThrowable("Suppressed/Suppressed", "A", "B", "E", "G"))
311 Throwable suppressed = newThrowable("Suppressed"); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
CloserTest.java 352 ImmutableSet<Throwable> suppressed = ImmutableSet.copyOf(getSuppressed(thrownException)); local
353 assertEquals(2, suppressed.size());
355 assertEquals(ImmutableSet.of(c1Exception, c2Exception), suppressed); local
375 * each such exception was suppressed because of the given thrown exception.
389 public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) {
390 suppressions.add(new Suppression(closeable, thrown, suppressed));
400 private final Throwable suppressed; field in class:CloserTest.Suppression
402 private Suppression(Closeable closeable, Throwable thrown, Throwable suppressed) {
405 this.suppressed = suppressed;
    [all...]
ByteSourceTest.java 362 // test that exceptions are suppressed
365 int suppressed = runSuppressionFailureTest(in, newNormalByteSink()); local
366 assertEquals(0, suppressed);
368 suppressed = runSuppressionFailureTest(in, BROKEN_CLOSE_SINK);
369 assertEquals((in == BROKEN_OPEN_SOURCE) ? 0 : 1, suppressed);
373 int suppressed = runSuppressionFailureTest(newNormalByteSource(), out); local
374 assertEquals(0, suppressed);
376 suppressed = runSuppressionFailureTest(BROKEN_CLOSE_SOURCE, out);
377 assertEquals(1, suppressed);
382 int suppressed = runSuppressionFailureTest(in, out) local
    [all...]
CharSourceTest.java 286 // test that exceptions are suppressed
289 int suppressed = runSuppressionFailureTest(in, newNormalCharSink()); local
290 assertEquals(0, suppressed);
292 suppressed = runSuppressionFailureTest(in, BROKEN_CLOSE_SINK);
293 assertEquals((in == BROKEN_OPEN_SOURCE) ? 0 : 1, suppressed);
297 int suppressed = runSuppressionFailureTest(newNormalCharSource(), out); local
298 assertEquals(0, suppressed);
300 suppressed = runSuppressionFailureTest(BROKEN_CLOSE_SOURCE, out);
301 assertEquals(1, suppressed);
306 int suppressed = runSuppressionFailureTest(in, out) local
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Throwable.java 210 * The list of suppressed exceptions, as returned by {@link
230 /** Caption for labeling suppressed exception stack traces */
231 private static final String SUPPRESSED_CAPTION = "Suppressed: ";
314 * suppressed list will have no effect. If the writable stack
579 * <i>suppressed exceptions</i> (in conjunction with the {@code
581 * suppressed in order to deliver an exception are printed out
590 * Suppressed: Resource$CloseFailException: Resource ID = 0
595 * Note that the "... n more" notation is used on suppressed exceptions
596 * just at it is used on causes. Unlike causes, suppressed exceptions are
599 * <p>An exception can have both a cause and one or more suppressed
906 List<Throwable> suppressed = null; local
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl_report.cc 50 bool OnReport(const ReportDesc *rep, bool suppressed);
53 bool OnReport(const ReportDesc *rep, bool suppressed) {
55 return suppressed;
513 bool suppressed = OnReport(rep, pc_or_addr != 0); local
515 if (suppressed)
  /external/skia/src/animator/
SkScript.cpp 269 *fOpStack.push() = kParen; // push even if eval is suppressed
369 bool SkScriptEngine::evaluateDot(const char*& script, bool suppressed) {
377 bool success = handleProperty(suppressed);
382 return evaluateDotParam(script, suppressed, field, fieldLength);
385 bool SkScriptEngine::evaluateDotParam(const char*& script, bool suppressed,
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 ? nullptr : &value)
531 SkBool suppressed = fSuppressStack.top().fSuppress; local
806 bool suppressed = SkToBool(fSuppressStack.top().fSuppress); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationGroupManager.java 147 boolean prevSuppressed = group.suppressed;
148 group.suppressed = group.summary != null && !group.expanded
153 if (prevSuppressed != group.suppressed) {
154 if (group.suppressed) {
237 return group != null && group.suppressed;
251 // Because notifications can become isolated when the group becomes suppressed it can
272 if (group == null || group.summary == null || group.suppressed) {
409 // The parent of a suppressed group got huned, lets hun the child!
465 * Is this notification group suppressed, i.e its summary is hidden
467 public boolean suppressed; field in class:NotificationGroupManager.NotificationGroup
    [all...]
  /frameworks/base/core/java/android/service/notification/
NotificationListenerService.java 137 * Whether notification suppressed by DND should not interruption visually when the screen is
143 * Whether notification suppressed by DND should not interruption visually when the screen is
1291 Integer suppressed = mSuppressedVisualEffects.get(key); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationManagerService.java 3157 int suppressed = (mZenModeHelper.shouldSuppressWhenScreenOff() local
    [all...]
  /prebuilts/tools/common/m2/repository/net/java/dev/javacc/javacc/5.0/
javacc-5.0.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/okhttp/okhttp/2.5.0/
okhttp-2.5.0.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/pmd/pmd/5.1.1/
pmd-5.1.1.jar 
  /external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar 
  /external/guice/lib/
guava-16.0.1.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 
  /prebuilts/devtools/tools/lib/
guava-17.0.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0/
compiler-2.1.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta1/
compiler-2.1.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta3/
compiler-2.1.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-rc1/
compiler-2.1.0-rc1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.2/
compiler-2.1.2.jar 

Completed in 1614 milliseconds

1 2