Home
last modified time | relevance | path

Searched refs:removeFirstIfIsInstanceOfOrPeekIf (Results 1 – 6 of 6) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/linearizability/
DLockFreeListLCStressTest.kt40 val node = q.removeFirstIfIsInstanceOfOrPeekIf<Node> { !it.isSame(value) } ?: return null in removeFirstOrPeekIfNotSame()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/
DLockFreeLinkedList.common.kt39 public inline fun <reified T> removeFirstIfIsInstanceOfOrPeekIf(predicate: (T) -> Boolean): T? in addLast() method in kotlinx.coroutines.internal.LockFreeLinkedListNode
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/internal/
DLinkedList.kt83 public inline fun <reified T> removeFirstIfIsInstanceOfOrPeekIf(predicate: (T) -> Boolean): T? { in removeFirstIfIsInstanceOfOrPeekIf() method in kotlinx.coroutines.internal.LinkedListNode
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/internal/
DLinkedList.kt83 public inline fun <reified T> removeFirstIfIsInstanceOfOrPeekIf(predicate: (T) -> Boolean): T? { in removeFirstIfIsInstanceOfOrPeekIf() method in kotlinx.coroutines.internal.LinkedListNode
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DAbstractChannel.kt96 queue.removeFirstIfIsInstanceOfOrPeekIf<Send> { it is Closed<*> } in <lambda>()
338 queue.removeFirstIfIsInstanceOfOrPeekIf<ReceiveOrClosed<E>>({ it is Closed<*> }) in <lambda>()
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/
DLockFreeLinkedList.kt292 …public actual inline fun <reified T> removeFirstIfIsInstanceOfOrPeekIf(predicate: (T) -> Boolean):… in <lambda>() method in kotlinx.coroutines.internal.LockFreeLinkedListNode