Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for removeFromChainForTesting (0.1 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        // alone
        assertThat(segment.removeFromChainForTesting(entryOne, entryOne)).isNull();
    
        // head
        assertThat(segment.removeFromChainForTesting(entryTwo, entryTwo)).isEqualTo(entryOne);
    
        // middle
        InternalEntry<Object, Object, ?> newFirst =
            segment.removeFromChainForTesting(entryThree, entryTwo);
        assertThat(newFirst.getKey()).isEqualTo(keyThree);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 36K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        // alone
        assertThat(segment.removeFromChainForTesting(entryOne, entryOne)).isNull();
    
        // head
        assertThat(segment.removeFromChainForTesting(entryTwo, entryTwo)).isEqualTo(entryOne);
    
        // middle
        InternalEntry<Object, Object, ?> newFirst =
            segment.removeFromChainForTesting(entryThree, entryTwo);
        assertThat(newFirst.getKey()).isEqualTo(keyThree);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 36K bytes
    - Click Count (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

          return removeEntryForTesting(castForTesting(entry));
        }
    
        /** Unsafely removes the given entry from the given chain in this segment's hash table. */
        @Nullable E removeFromChainForTesting(
            InternalEntry<K, V, ?> first, InternalEntry<K, V, ?> entry) {
          return removeFromChain(castForTesting(first), castForTesting(entry));
        }
    
        /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 89.9K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          return removeEntryForTesting(castForTesting(entry));
        }
    
        /** Unsafely removes the given entry from the given chain in this segment's hash table. */
        @Nullable E removeFromChainForTesting(
            InternalEntry<K, V, ?> first, InternalEntry<K, V, ?> entry) {
          return removeFromChain(castForTesting(first), castForTesting(entry));
        }
    
        /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 89.9K bytes
    - Click Count (0)
Back to Top