HomeSort by relevance Sort by last modified time
    Searched refs:mThrowables (Results 1 - 2 of 2) sorted by null

  /cts/tests/autofillservice/src/android/autofillservice/cts/
MultipleExceptionsCatcher.java 37 private final List<Throwable> mThrowables = new ArrayList<>();
46 mThrowables.add(t);
57 mThrowables.add(t);
66 if (mThrowables.isEmpty()) return;
68 final int numberExceptions = mThrowables.size();
70 throw mThrowables.get(0);
79 final Throwable exception = mThrowables.get(i);
  /frameworks/base/tests/testables/src/android/testing/
LeakCheck.java 98 private List<Throwable> mThrowables = new ArrayList<>();
110 mThrowables.add(t);
118 mThrowables.clear();
122 if (mThrowables.size() == 0) return;
124 for (Throwable t : mThrowables) {
128 mThrowables.get(0).printStackTrace(new PrintWriter(writer));

Completed in 2366 milliseconds