Home
last modified time | relevance | path

Searched defs:retainAll (Results 1 – 14 of 14) sorted by relevance

/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/external/kotlinx/collections/immutable/
DImmutableCollection.kt78 fun retainAll(elements: Collection<@UnsafeVariance E>): PersistentCollection<E> in add() method
DImmutableSet.kt80 override fun retainAll(elements: Collection<@UnsafeVariance E>): PersistentSet<E> in add() method
DImmutableList.kt112 override fun retainAll(elements: Collection<@UnsafeVariance E>): PersistentList<E> in add() method
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/external/kotlinx/collections/immutable/implementations/immutableList/
DAbstractPersistentList.kt37 override fun retainAll(elements: Collection<E>): PersistentList<E> { in retainAll() method in androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableList.AbstractPersistentList
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/external/kotlinx/collections/immutable/implementations/immutableSet/
DPersistentHashSet.kt41 override fun retainAll(elements: Collection<E>): PersistentSet<E> { in retainAll() method in androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet.PersistentHashSet
DPersistentHashSetBuilder.kt63 override fun retainAll(elements: Collection<E>): Boolean { in retainAll() method in androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.immutableSet.PersistentHashSetBuilder
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/snapshots/
DSnapshotStateMap.kt247 override fun retainAll(elements: Collection<MutableMap.MutableEntry<K, V>>): Boolean { in clear() method
276 override fun retainAll(elements: Collection<K>): Boolean { in retainAll() method
302 override fun retainAll(elements: Collection<V>): Boolean { in retainAll() method
DSnapshotStateList.kt155 override fun retainAll(elements: Collection<T>) = mutateBoolean { it.retainAll(elements) } in <lambda>() method
507 override fun retainAll(elements: Collection<T>): Boolean { in retainAll() method
DSnapshotStateSet.kt122 override fun retainAll(elements: Collection<T>) = mutateBoolean { in <lambda>() method
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/external/kotlinx/collections/immutable/implementations/persistentOrderedSet/
DPersistentOrderedSet.kt88 override fun retainAll(elements: Collection<E>): PersistentSet<E> { in withNext() method in androidx.compose.runtime.external.kotlinx.collections.immutable.implementations.persistentOrderedSet.PersistentOrderedSet
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/collection/
DMutableVector.kt757 fun retainAll(elements: Collection<T>): Boolean { in <lambda>() method
886 override fun retainAll(elements: Collection<T>): Boolean = vector.retainAll(elements) in <lambda>() method in androidx.compose.runtime.collection.MutableVectorList
1017 override fun retainAll(elements: Collection<T>): Boolean { in <lambda>() method in androidx.compose.runtime.collection.SubList
/compose/foundation/foundation/integration-tests/foundation-demos/src/main/java/androidx/compose/foundation/demos/collection/
DColorList.kt764 public inline fun retainAll(elements: ColorList): Boolean = list.retainAll(elements.list) in lastIndexOf() method
771 public inline fun retainAll(elements: MutableColorList): Boolean = list.retainAll(elements.list) in lastIndexOf() method
/compose/ui/ui/src/commonMain/kotlin/androidx/compose/ui/layout/
DSubcomposeLayout.kt447 fun retainAll(slotIds: Collection<Any?>): Boolean = set.retainAll(slotIds) in getSlotsToRetain() method
454 fun retainAll(predicate: (Any?) -> Boolean): Boolean = set.retainAll(predicate) in getSlotsToRetain() method
/compose/runtime/runtime/src/nonEmulatorCommonTest/kotlin/androidx/compose/runtime/collection/
DMutableVectorTest.kt490 fun retainAll() { in <lambda>() method