Home
last modified time | relevance | path

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

/cts/common/util/src/com/android/compatibility/common/util/
DModuleResult.java261 public void mergeFrom(IModuleResult otherModuleResult) { in mergeFrom() argument
262 if (!otherModuleResult.getId().equals(getId())) { in mergeFrom()
265 otherModuleResult.getId(), getId())); in mergeFrom()
268 this.mRuntime += otherModuleResult.getRuntime(); in mergeFrom()
269 this.mNotExecuted += otherModuleResult.getNotExecuted(); in mergeFrom()
270 this.setDone(otherModuleResult.isDoneSoFar()); in mergeFrom()
271 this.mActualTestRuns += otherModuleResult.getTestRuns(); in mergeFrom()
274 this.mExpectedTestRuns = otherModuleResult.getExpectedTestRuns(); in mergeFrom()
275 for (ICaseResult otherCaseResult : otherModuleResult.getResults()) { in mergeFrom()
DIModuleResult.java150 void mergeFrom(IModuleResult otherModuleResult); in mergeFrom() argument