Searched refs:dropWhile (Results 1 – 10 of 10) sorted by relevance
19 assertEquals(6, flow.dropWhile { false }.sum()) in <lambda>()20 assertNull(flow.dropWhile { true }.singleOrNull()) in <lambda>()21 assertEquals(5, flow.dropWhile { it < 2 }.sum()) in <lambda>()22 assertEquals(1, flow.take(1).dropWhile { it > 1 }.single()) in <lambda>()27 assertEquals(0, flowOf<Int>().dropWhile { true }.sum()) in <lambda>()28 assertEquals(0, flowOf<Int>().dropWhile { false }.sum()) in <lambda>()42 }.dropWhile { in <lambda>()
75 docComment.descriptionElements.dropWhile { it.text.trim().isEmpty() }, in parseDocumentation()78 val paragraphs = firstParagraph.children.dropWhile { it !is ContentParagraph } in parseDocumentation()242 .dropWhile { it.node?.elementType == JavaDocTokenType.DOC_TAG_NAME } in parseDocumentation()243 .dropWhile { it is PsiWhiteSpace } in parseDocumentation()245 …return if (getSubjectName() != null) tagValueElements.dropWhile { it is PsiDocTagValue } else tagV… in parseDocumentation()538 val descriptionElements = method.docComment?.descriptionElements?.dropWhile { in parseDocumentation()555 val contentElements = tag.contentElements().dropWhile { it.text.trim().isEmpty() } in parseDocumentation()568 … val docs = method.docComment?.descriptionElements?.dropWhile { it.text.trim().isEmpty() } in parseDocumentation()
160 var pathFromToplevelMember = path.dropWhile { it.kind !in NodeKind.classLike } in qualifiedNameForPageTitle()162 …pathFromToplevelMember = path.dropWhile { it.kind != NodeKind.Property && it.kind != NodeKind.Func… in qualifiedNameForPageTitle()
178 .dropWhile { it is ContentText && it.text.isBlank() } in <lambda>()
62 .dropWhile { it % nConsumers != consumerIndex.toLong() } in <lambda>()
191 ….dropWhile { it != SharingCommand.START } // don't emit any STOP/RESET_BUFFER to start with, only … in toString()
33 public fun <T> Flow<T>.dropWhile(predicate: suspend (T) -> Boolean): Flow<T> = flow { in <lambda>() method
718 public fun <E> ReceiveChannel<E>.dropWhile(context: CoroutineContext = Dispatchers.Unconfined, pred… in dropWhile() method720 for (e in this@dropWhile) { in dropWhile()726 for (e in this@dropWhile) { in dropWhile()
275 … return path.dropWhile { it.kind !in NodeKind.classLike }.joinToString(separator = ".") { it.name } in classNodeNameWithOuterClass()
653 …public static final fun dropWhile (Lkotlinx/coroutines/channels/ReceiveChannel;Lkotlin/coroutines/…654 …public static synthetic fun dropWhile$default (Lkotlinx/coroutines/channels/ReceiveChannel;Lkotlin…954 …public static final fun dropWhile (Lkotlinx/coroutines/flow/Flow;Lkotlin/jvm/functions/Function2;)…