Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for Itr (0.01 sec)

  1. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          collection.clear();
          totalSize -= count;
        }
      }
    
      private abstract class Itr<T extends @Nullable Object> implements Iterator<T> {
        final Iterator<Entry<K, Collection<V>>> keyIterator;
        @Nullable K key;
        @Nullable Collection<V> collection;
        Iterator<V> valueIterator;
    
        Itr() {
          keyIterator = map.entrySet().iterator();
          key = null;
          collection = null;
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Nov 17 22:50:48 UTC 2025
    - 48.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/CompactHashMap.java

       */
      int adjustAfterRemove(int indexBeforeRemove, @SuppressWarnings("unused") int indexRemoved) {
        return indexBeforeRemove - 1;
      }
    
      private abstract class Itr<T extends @Nullable Object> implements Iterator<T> {
        int expectedMetadata = metadata;
        int currentIndex = firstEntryIndex();
        int indexToRemove = -1;
    
        @Override
        public boolean hasNext() {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 35.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/OrderingTest.java

        assertEquals(ImmutableList.of(-1, 3, 5), result);
      }
    
      public void testLeastOfIterator_simple_nMinusOne_withNullElement() {
        Iterator<@Nullable Integer> itr = Iterators.forArray(3, null, 5, -1);
        List<@Nullable Integer> result = Ordering.<Integer>natural().nullsLast().leastOf(itr, 3);
        assertTrue(result instanceof RandomAccess);
        assertListImmutable(result);
        assertEquals(ImmutableList.of(-1, 3, 5), result);
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 10 23:13:45 UTC 2025
    - 42.8K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/OrderingTest.java

        assertEquals(ImmutableList.of(-1, 3, 5), result);
      }
    
      public void testLeastOfIterator_simple_nMinusOne_withNullElement() {
        Iterator<@Nullable Integer> itr = Iterators.forArray(3, null, 5, -1);
        List<@Nullable Integer> result = Ordering.<Integer>natural().nullsLast().leastOf(itr, 3);
        assertTrue(result instanceof RandomAccess);
        assertListImmutable(result);
        assertEquals(ImmutableList.of(-1, 3, 5), result);
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 10 23:13:45 UTC 2025
    - 42.8K bytes
    - Viewed (0)
  5. okhttp/src/androidMain/baseline-prof.txt

    HSPLkotlin/collections/SetsKt__SetsKt;->optimizeReadOnlyList(Ljava/util/List;)Ljava/util/List;
    HSPLkotlin/collections/builders/ListBuilder$Itr;-><init>(Lkotlin/collections/builders/ListBuilder;I)V
    HSPLkotlin/collections/builders/ListBuilder$Itr;->hasNext()Z
    HSPLkotlin/collections/builders/ListBuilder$Itr;->next()Ljava/lang/Object;
    HSPLkotlin/collections/builders/ListBuilder;-><init>()V
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Mon Dec 30 23:28:56 UTC 2024
    - 127.9K bytes
    - Viewed (1)
Back to top