Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for removeTableEntryForTesting (0.32 seconds)

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

          return this.map.entryHelper.newEntry(self(), key, hash, castForTesting(next));
        }
    
        /** Unsafely removes the given entry from this segment's hash table. */
        @CanIgnoreReturnValue
        boolean removeTableEntryForTesting(InternalEntry<K, V, ?> entry) {
          return removeEntryForTesting(castForTesting(entry));
        }
    
        /** Unsafely removes the given entry from the given chain in this segment's hash table. */
    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)
  2. android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        segment.setValueForTesting(entry, value);
    
        // remove absent
        assertFalse(segment.removeTableEntryForTesting(entry));
    
        segment.setTableEntryForTesting(0, entry);
        segment.count = 1;
        assertTrue(segment.removeTableEntryForTesting(entry));
        assertEquals(0, segment.count);
        assertThat(table.get(0)).isNull();
      }
    
      public void testClearValue() {
    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-tests/test/com/google/common/collect/MapMakerInternalMapTest.java

        segment.setValueForTesting(entry, value);
    
        // remove absent
        assertFalse(segment.removeTableEntryForTesting(entry));
    
        segment.setTableEntryForTesting(0, entry);
        segment.count = 1;
        assertTrue(segment.removeTableEntryForTesting(entry));
        assertEquals(0, segment.count);
        assertThat(table.get(0)).isNull();
      }
    
      public void testClearValue() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 36K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          return this.map.entryHelper.newEntry(self(), key, hash, castForTesting(next));
        }
    
        /** Unsafely removes the given entry from this segment's hash table. */
        @CanIgnoreReturnValue
        boolean removeTableEntryForTesting(InternalEntry<K, V, ?> entry) {
          return removeEntryForTesting(castForTesting(entry));
        }
    
        /** Unsafely removes the given entry from the given chain in this segment's hash table. */
    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