Home
last modified time | relevance | path

Searched defs:withIndex (Results 1 – 5 of 5) sorted by relevance

/external/guava/guava-tests/test/com/google/common/collect/
DStreamsTest.java328 Stream<String> withIndex = Streams.mapWithIndex(strings, (str, i) -> str + ":" + i); in testMapWithIndex_closeIsPropagated() local
353 Stream<String> withIndex = Streams.mapWithIndex(intStream, (str, i) -> str + ":" + i); in testMapWithIndex_intStream_closeIsPropagated() local
378 Stream<String> withIndex = Streams.mapWithIndex(longStream, (str, i) -> str + ":" + i); in testMapWithIndex_longStream_closeIsPropagated() local
405 Stream<String> withIndex = Streams.mapWithIndex(doubleStream, (str, i) -> str + ":" + i); in testMapWithIndex_doubleStream_closeIsPropagated() local
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/builder/
DBuilderDeserializationTest2486.java38 public Builder withIndex(int i) { in withIndex() method in BuilderDeserializationTest2486.MyPOJOWithArrayCreator.Builder
80 public Builder withIndex(int i) { in withIndex() method in BuilderDeserializationTest2486.MyPOJOWithPrimitiveCreator.Builder
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DTransform.kt64 public fun <T> Flow<T>.withIndex(): Flow<IndexedValue<T>> = flow { in <lambda>() method
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DPropertyMetadata.java209 public PropertyMetadata withIndex(Integer index) { in withIndex() method in PropertyMetadata
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DDeprecated.kt397 public fun <E> ReceiveChannel<E>.withIndex(context: CoroutineContext = Dispatchers.Unconfined): Rec… in mapIndexedNotNull() method