Home
last modified time | relevance | path

Searched defs:joinAll (Results 1 – 3 of 3) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DAwait.kt55 public suspend fun joinAll(vararg jobs: Job): Unit = jobs.forEach { it.join() } in <lambda>() method
67 public suspend fun Collection<Job>.joinAll(): Unit = forEach { it.join() } in <lambda>() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/scheduling/
DSchedulerTestBase.kt65 suspend fun Iterable<Job>.joinAll() = forEach { it.join() } in <lambda>() method
/external/cldr/tools/java/org/unicode/cldr/util/
DXPathParts.java243 public Comments joinAll(Comments other) { in joinAll() method in XPathParts.Comments