Searched refs:t (Results 1 – 15 of 15) sorted by relevance
/platform_testing/libraries/aupt-lib/src/android/support/test/aupt/ |
D | AuptTestRunner.java | 307 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 …]
|
D | DexTestRunner.java | 276 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()
|
D | DataCollector.java | 125 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/ |
D | Assertions.java | 45 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/ |
D | MappedMultiException.java | 40 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/ |
D | HelperManager.java | 288 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/ |
D | OWNERS | 9 # Don't send reviews here.
|
/platform_testing/libraries/health/utils/ |
D | OWNERS | 9 # Don't send reviews here.
|
/platform_testing/tests/health/scenarios/ |
D | OWNERS | 9 # Don't send reviews here.
|
/platform_testing/libraries/health/runners/longevity/ |
D | OWNERS | 9 # Don't send reviews here.
|
/platform_testing/libraries/health/composers/ |
D | OWNERS | 9 # Don't send reviews here.
|
/platform_testing/libraries/health/rules/ |
D | OWNERS | 9 # Don't send reviews here.
|
/platform_testing/libraries/health/runners/longevity/platform/src/android/platform/test/longevity/ |
D | ProfileSuite.java | 89 } catch (Throwable t) { in constructClassRunners() 90 throw new InitializationError(t); in constructClassRunners()
|
D | LongevitySuite.java | 140 } catch (Throwable t) { in constructClassRunners() 141 throw new InitializationError(t); in constructClassRunners()
|
/platform_testing/tests/perf/PerfTransitionTest/src/com/android/apptransition/tests/ |
D | AppTransitionTests.java | 457 Thread t = new Thread(runnable); in startApp() local 458 t.start(); in startApp() 460 t.join(JOIN_TIMEOUT); in startApp()
|