Home
last modified time | relevance | path

Searched refs:filterNot (Results 1 – 12 of 12) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/test/flow/operators/
DFilterTest.kt52 assertEquals(0, flow.filterNot { true }.sum()) in <lambda>()
53 assertEquals(3, flow.filterNot { false }.sum()) in <lambda>()
58 val sum = emptyFlow<Int>().filterNot { true }.sum() in <lambda>()
74 }.filterNot { in <lambda>()
/external/dokka/core/src/main/kotlin/Locations/
DLocation.kt34 val parts = qualifiedName.map { identifierToFilename(it) }.filterNot { it.isEmpty() } in relativePathToNode()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DTransform.kt27 public inline fun <T> Flow<T>.filterNot(crossinline predicate: suspend (T) -> Boolean): Flow<T> = t… in filterNot() method
/external/dokka/core/src/main/kotlin/Formats/
DKotlinWebsiteHtmlFormatService.kt130 val targetPlatforms = platforms.filterNot { it.isKotlinVersion() || it.isJREVersion() } in calculateDataAttributes()
DKotlinWebsiteFormatService.kt154 val targetPlatforms = platforms.filterNot { it.isKotlinVersion() || it.isJREVersion() } in calculateDataAttributes()
DStructuredFormatService.kt274 node.path.filterNot { it.name.isEmpty() }.map { link(node, it) }.distinct() in <lambda>()
471 … val breakdownByLocation = node.path.filterNot { it.name.isEmpty() }.map { link(node, it) } in <lambda>()
/external/dokka/core/src/main/kotlin/Kotlin/
DKotlinLanguageService.kt278 …val supertypes = node.details(NodeKind.Supertype).filterNot { it.qualifiedNameFromType() in ignore… in <lambda>()
/external/dokka/core/src/main/kotlin/Java/
DJavadocParser.kt244 .filterNot { it.node?.elementType == JavaDocTokenType.DOC_COMMENT_LEADING_ASTERISKS } in parseDocumentation()
/external/dokka/core/src/main/kotlin/Formats/JavaLayoutHtml/
DJavaLayoutHtmlFormatOutputBuilder.kt1118 .filterNot { (_, values) -> values.isEmpty() } in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DChannels.common.kt831 public fun <E> ReceiveChannel<E>.filterNot(context: CoroutineContext = Dispatchers.Unconfined, pred… in filterNot() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/api/
Dkotlinx-coroutines-core.api664 …public static final fun filterNot (Lkotlinx/coroutines/channels/ReceiveChannel;Lkotlin/coroutines/…
665 …public static synthetic fun filterNot$default (Lkotlinx/coroutines/channels/ReceiveChannel;Lkotlin…
959 …public static final fun filterNot (Lkotlinx/coroutines/flow/Flow;Lkotlin/jvm/functions/Function2;)…
/external/kotlinx.coroutines/
DCHANGES.md715 * Added context argument to `Channel.filterNot` (PR by @jcornaz).