Searched refs:mapNotNull (Results 1 – 11 of 11) sorted by relevance
84 .mapNotNull { notificationEntryManager.getActiveNotificationUnfiltered(it) } in onNotificationRankingUpdated()90 ?.mapNotNull { it as? ConversationLayout } in onNotificationRankingUpdated()166 .mapNotNull { (key, _) -> in onNotificationPanelExpandStateChanged()180 expanded.values.asSequence().mapNotNull { it.row }.forEach(::resetBadgeUi) in onNotificationPanelExpandStateChanged()194 .mapNotNull { view -> view as? ConversationLayout } in view()
76 return bubbles.mapNotNull { b -> in <lambda>()80 b.metadataShortcutId ?: return@mapNotNull null, in <lambda>()163 val bubbles = entities.mapNotNull { entity -> in <lambda>()
311 ?.mapNotNull { it as? ViewGroup } in extractAvatarFromRow()315 ?.mapNotNull { in <lambda>()318 ?.mapNotNull { messagesView -> in messagesView()320 .mapNotNull { it as? MessagingGroup } in messagesView()
56 .mapNotNull { it.exceptionOrNull() } in verify()
107 this.oldPackages = apks.mapNotNull { in <lambda>()116 this.newPackages = apks.mapNotNull { in <lambda>()
21 inline fun String.mapLines(f: String.() -> String?) = lines().mapNotNull(f).joinToString("\n") in <lambda>()120 cause = parse.problems.mapNotNull { it.cause.orElse(null) }.firstOrNull()) in parseJava()
167 getSuppressedMembers(customBaseBuilderAst) + suppressedMembers.mapNotNull { in <lambda>()
46 .mapNotNull { idx -> in <lambda>()
300 val sub = UglySubscription(controlKeys.mapNotNull { controls[it] }.iterator(), in subscribe()316 controlKeys.mapNotNull { controls[it] }.forEach { control -> in refresh()
54 get() = favoriteIds.mapNotNull { id -> in <lambda>()
155 public static @NonNull <I, O> List<O> mapNotNull(@Nullable List<I> cur, in mapNotNull() method in CollectionUtils