Home
last modified time | relevance | path

Searched refs:t (Results 1 – 15 of 15) sorted by relevance

/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/
DAuptTestRunner.java307 public void addError(Test test, Throwable t) {}
310 public void addFailure(Test test, AssertionFailedError t) {}
477 public void addError(Test test, Throwable t) {
478 Log.e(LOG_TAG, "Caught exception from a test", t);
480 if ((t instanceof AuptTerminator)) {
481 throw (AuptTerminator)t;
501 throw new AuptTerminator(t.getMessage(), t);
505 public void addFailure(Test test, AssertionFailedError t) {
507 throw new AuptTerminator(t.getMessage(), t);
597 for (Thread t : stacks.keySet()) {
[all …]
DDexTestRunner.java276 void onError(Test test, Throwable t) { in onError() argument
277 if (t instanceof AssertionFailedError) { in onError()
279 listener.addFailure(test, (AssertionFailedError) t); in onError()
283 listener.addError(test, t); in onError()
DDataCollector.java125 Long t = SystemClock.uptimeMillis() - mLastUpdate.get(entry.getKey()); in loop() local
127 if (entry.getValue() > 0 && t >= entry.getValue()) { in loop()
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/
DAssertions.java45 return (T t) -> apply(t).negate(); in negate()
71 public Result apply(T t) { in apply() argument
72 return this.assertion.apply(t); in apply()
100 public Result apply(T t) { in apply() argument
102 this.assertions.stream().map(p -> p.apply(t)).collect(Collectors.toList()); in apply()
/platform_testing/libraries/app-helpers/core/src/android/platform/helpers/exceptions/
DMappedMultiException.java40 private String stackTraceToString(Throwable t) { in stackTraceToString() argument
42 t.printStackTrace(new PrintWriter(stringWriter)); in stackTraceToString()
/platform_testing/libraries/app-helpers/core/src/android/platform/helpers/
DHelperManager.java288 private TestHelperException wrapThrowable(String message, Throwable t) { in wrapThrowable() argument
289 Throwable causeIfPresent = getCauseIfPresent(t); in wrapThrowable()
300 private Throwable getCauseIfPresent(Throwable t) { in getCauseIfPresent() argument
301 return t.getCause() == null ? t : t.getCause(); in getCauseIfPresent()
/platform_testing/libraries/health/runners/microbenchmark/
DOWNERS9 # Don't send reviews here.
/platform_testing/libraries/health/utils/
DOWNERS9 # Don't send reviews here.
/platform_testing/tests/health/scenarios/
DOWNERS9 # Don't send reviews here.
/platform_testing/libraries/health/runners/longevity/
DOWNERS9 # Don't send reviews here.
/platform_testing/libraries/health/composers/
DOWNERS9 # Don't send reviews here.
/platform_testing/libraries/health/rules/
DOWNERS9 # Don't send reviews here.
/platform_testing/libraries/health/runners/longevity/platform/src/android/platform/test/longevity/
DProfileSuite.java89 } catch (Throwable t) { in constructClassRunners()
90 throw new InitializationError(t); in constructClassRunners()
DLongevitySuite.java140 } catch (Throwable t) { in constructClassRunners()
141 throw new InitializationError(t); in constructClassRunners()
/platform_testing/tests/perf/PerfTransitionTest/src/com/android/apptransition/tests/
DAppTransitionTests.java457 Thread t = new Thread(runnable); in startApp() local
458 t.start(); in startApp()
460 t.join(JOIN_TIMEOUT); in startApp()