Home
last modified time | relevance | path

Searched refs:otherModuleResult (Results 1 – 2 of 2) sorted by relevance

/test/suite_harness/common/util/src/com/android/compatibility/common/util/
DModuleResult.java276 public void mergeFrom(IModuleResult otherModuleResult) { in mergeFrom() argument
277 if (!otherModuleResult.getId().equals(getId())) { in mergeFrom()
280 otherModuleResult.getId(), getId())); in mergeFrom()
283 this.mRuntime += otherModuleResult.getRuntime(); in mergeFrom()
284 this.mNotExecuted += otherModuleResult.getNotExecuted(); in mergeFrom()
287 this.setDone(otherModuleResult.isDoneSoFar()); in mergeFrom()
288 this.mActualTestRuns += otherModuleResult.getTestRuns(); in mergeFrom()
291 this.mExpectedTestRuns += otherModuleResult.getExpectedTestRuns(); in mergeFrom()
295 this.mIsFailed = otherModuleResult.isFailed(); in mergeFrom()
297 for (ICaseResult otherCaseResult : otherModuleResult.getResults()) { in mergeFrom()
DIModuleResult.java156 void mergeFrom(IModuleResult otherModuleResult); in mergeFrom() argument