Home
last modified time | relevance | path

Searched refs:SnapshotStateList (Results 1 – 25 of 69) sorted by relevance

123

/compose/runtime/runtime/src/nonEmulatorCommonTest/kotlin/androidx/compose/runtime/snapshots/
DSnapshotStateListTests.kt511 val list = SnapshotStateList(7) { it } in <lambda>()
520 val list = SnapshotStateList(7) { it } in <lambda>()
530 val actual = SnapshotStateList(expected.size) { it } in <lambda>()
538 val list = SnapshotStateList(7) { it } in <lambda>()
705 validate(SnapshotStateList(100) { it }) { list -> list.reverse() } in <lambda>()
710 validate(SnapshotStateList(100) { it }) { list -> in <lambda>()
736 validate(SnapshotStateList(100) { it }) { list -> in <lambda>()
750 validate(SnapshotStateList(100) { it }) { list -> in <lambda>()
764 val list = SnapshotStateList(100) { it } in <lambda>()
771 validate(SnapshotStateList(100) { it }) { list -> in <lambda>()
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/snapshots/
DSnapshotStateList.kt36 class SnapshotStateList<T> internal constructor(persistentList: PersistentList<T>) : class
274 fun <T> SnapshotStateList(size: Int, init: (index: Int) -> T): SnapshotStateList<T> { in SnapshotStateList() method
276 return SnapshotStateList() in SnapshotStateList()
283 return SnapshotStateList(builder.build()) in SnapshotStateList()
315 private class StateListIterator<T>(val list: SnapshotStateList<T>, offset: Int) : in invalidIteratorSet()
374 private class SubList<T>(val parentList: SnapshotStateList<T>, fromIndex: Int, toIndex: Int) :
/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/
DSnapshotState.kt26 import androidx.compose.runtime.snapshots.SnapshotStateList in <lambda>()
234 @StateFactoryMarker fun <T> mutableStateListOf() = SnapshotStateList<T>() in mutableStateListOf()
246 SnapshotStateList<T>().also { it.addAll(elements.toList()) } in mutableStateListOf()
251 fun <T> Collection<T>.toMutableStateList() = SnapshotStateList<T>().also { it.addAll(this) } in <lambda>()
/compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/text/input/internal/undo/
DUndoManager.kt23 import androidx.compose.runtime.snapshots.SnapshotStateList
42 private var undoStack = SnapshotStateList<T>().apply { addAll(initialUndoStack) } in <lambda>()
43 private var redoStack = SnapshotStateList<T>().apply { addAll(initialRedoStack) } in <lambda>()
/compose/foundation/foundation/src/commonMain/kotlin/androidx/compose/foundation/lazy/layout/
DLazyLayoutPinnableItem.kt28 import androidx.compose.runtime.snapshots.SnapshotStateList
68 constructor() : this(SnapshotStateList())
/compose/runtime/runtime/bcv/native/
Dcurrent.txt640SnapshotStateList : androidx.compose.runtime.snapshots/StateObject, kotlin.collections/MutableList…
641 … constructor <init>() // androidx.compose.runtime.snapshots/SnapshotStateList.<init>|<init>(){}[0]
643 final val size // androidx.compose.runtime.snapshots/SnapshotStateList.size|{}size[0]
644 …final fun <get-size>(): kotlin/Int // androidx.compose.runtime.snapshots/SnapshotStateList.size.<g…
646 …final var firstStateRecord // androidx.compose.runtime.snapshots/SnapshotStateList.firstStateRecor…
647 …runtime.snapshots/StateRecord // androidx.compose.runtime.snapshots/SnapshotStateList.firstStateRe…
649 …final fun add(#A): kotlin/Boolean // androidx.compose.runtime.snapshots/SnapshotStateList.add|add(…
650 …final fun add(kotlin/Int, #A) // androidx.compose.runtime.snapshots/SnapshotStateList.add|add(kotl…
651 …llection<#A>): kotlin/Boolean // androidx.compose.runtime.snapshots/SnapshotStateList.addAll|addAl…
652 …llection<#A>): kotlin/Boolean // androidx.compose.runtime.snapshots/SnapshotStateList.addAll|addAl…
[all …]
D1.8.0-beta02.txt646SnapshotStateList : androidx.compose.runtime.snapshots/StateObject, kotlin.collections/MutableList…
647 … constructor <init>() // androidx.compose.runtime.snapshots/SnapshotStateList.<init>|<init>(){}[0]
649 final val size // androidx.compose.runtime.snapshots/SnapshotStateList.size|{}size[0]
650 …final fun <get-size>(): kotlin/Int // androidx.compose.runtime.snapshots/SnapshotStateList.size.<g…
652 …final var firstStateRecord // androidx.compose.runtime.snapshots/SnapshotStateList.firstStateRecor…
653 …runtime.snapshots/StateRecord // androidx.compose.runtime.snapshots/SnapshotStateList.firstStateRe…
655 …final fun add(#A): kotlin/Boolean // androidx.compose.runtime.snapshots/SnapshotStateList.add|add(…
656 …final fun add(kotlin/Int, #A) // androidx.compose.runtime.snapshots/SnapshotStateList.add|add(kotl…
657 …llection<#A>): kotlin/Boolean // androidx.compose.runtime.snapshots/SnapshotStateList.addAll|addAl…
658 …llection<#A>): kotlin/Boolean // androidx.compose.runtime.snapshots/SnapshotStateList.addAll|addAl…
[all …]
D1.7.0.txt307SnapshotStateList : androidx.compose.runtime.snapshots/StateObject, kotlin.collections/MutableList…
308 … constructor <init>() // androidx.compose.runtime.snapshots/SnapshotStateList.<init>|<init>(){}[0]
309 …final fun add(#A): kotlin/Boolean // androidx.compose.runtime.snapshots/SnapshotStateList.add|add(…
310 …final fun add(kotlin/Int, #A) // androidx.compose.runtime.snapshots/SnapshotStateList.add|add(kotl…
311 …llection<#A>): kotlin/Boolean // androidx.compose.runtime.snapshots/SnapshotStateList.addAll|addAl…
312 …llection<#A>): kotlin/Boolean // androidx.compose.runtime.snapshots/SnapshotStateList.addAll|addAl…
313 final fun clear() // androidx.compose.runtime.snapshots/SnapshotStateList.clear|clear(){}[0]
314 …final fun contains(#A): kotlin/Boolean // androidx.compose.runtime.snapshots/SnapshotStateList.con…
315 …llection<#A>): kotlin/Boolean // androidx.compose.runtime.snapshots/SnapshotStateList.containsAll|…
316 …final fun get(kotlin/Int): #A // androidx.compose.runtime.snapshots/SnapshotStateList.get|get(kotl…
[all …]
/compose/animation/animation/integration-tests/animation-demos/src/main/java/androidx/compose/animation/demos/visualaid/
DEasingFunctionDemo.kt45 import androidx.compose.runtime.snapshots.SnapshotStateList in <lambda>()
162 listPoints: SnapshotStateList<Animatable<Float, AnimationVector1D>> in DrawScope()
/compose/runtime/runtime/api/
Drestricted_1.1.0-beta03.txt424 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
425 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
426 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
427 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
428 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
429 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
430 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
431 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
432 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
433 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
Drestricted_1.2.0-beta04.txt461 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
462 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
463 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
464 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
465 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
466 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
467 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
468 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
469 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
470 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
D1.1.0-beta04.txt415 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
416 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
417 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
418 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
419 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
420 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
421 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
422 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
423 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
424 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
D1.1.0-beta05.txt415 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
416 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
417 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
418 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
419 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
420 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
421 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
422 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
423 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
424 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
D1.1.0-beta02.txt415 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
416 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
417 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
418 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
419 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
420 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
421 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
422 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
423 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
424 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
Drestricted_1.2.0-beta02.txt461 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
462 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
463 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
464 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
465 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
466 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
467 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
468 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
469 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
470 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
Drestricted_1.1.0-beta04.txt424 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
425 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
426 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
427 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
428 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
429 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
430 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
431 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
432 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
433 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
Drestricted_1.1.0-beta05.txt424 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
425 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
426 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
427 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
428 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
429 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
430 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
431 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
432 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
433 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
Drestricted_1.1.0-beta02.txt424 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
425 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
426 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
427 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
428 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
429 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
430 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
431 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
432 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
433 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
D1.1.0-beta03.txt415 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
416 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
417 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
418 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
419 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
420 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
421 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
422 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
423 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
424 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
Drestricted_1.2.0-beta03.txt461 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
462 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
463 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
464 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
465 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
466 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
467 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
468 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
469 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
470 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
Drestricted_1.2.0-beta01.txt461 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
462 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
463 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
464 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
465 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
466 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
467 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
468 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
469 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
470 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
Drestricted_1.3.0-beta01.txt467 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
468 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
469 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
470 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
471 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
472 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
473 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
474 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
475 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
476 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
D1.2.0-beta02.txt483 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
484 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
485 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
486 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
487 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
488 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
489 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
490 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
491 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
492 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
D1.3.0-beta04.txt489 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
490 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
491 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
492 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
493 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
494 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
495 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
496 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
497 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
498 …method public static <T> androidx.compose.runtime.snapshots.SnapshotStateList<T> mutableStateListO…
[all …]
/compose/runtime/runtime/src/nonEmulatorJvmTest/kotlin/androidx/compose/runtime/snapshots/
DSnapshotTestsJvm.kt83 val list = SnapshotStateList<Int>().apply { add(0) } in listWriteRace()

123