Home
last modified time | relevance | path

Searched refs:otherIterator (Results 1 – 3 of 3) sorted by relevance

/external/guava/android/guava/src/com/google/common/collect/
DRegularImmutableSortedSet.java175 Iterator<?> otherIterator = that.iterator(); in equals() local
180 Object otherElement = otherIterator.next(); in equals()
/external/guava/guava/src/com/google/common/collect/
DRegularImmutableSortedSet.java186 Iterator<?> otherIterator = that.iterator(); in equals() local
191 Object otherElement = otherIterator.next(); in equals()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DChannels.common.kt2184 val otherIterator = other.iterator() in zip() constant
2186 if (!otherIterator.hasNext()) return@consumeEach in zip()
2187 val element2 = otherIterator.next() in zip()