Lines Matching defs:K
207 public <K, V, E> ConcurrentMap<K, V> buildMap(Strategy<K, V, E> strategy) { in buildMap()
252 ComputingStrategy<K, V, E> strategy, in buildComputingMap()
253 Function<? super K, ? extends V> computer) { in buildComputingMap()
425 void setInternals(Internals<K, V, E> internals); in setInternals()
499 V compute(K key, E entry, Function<? super K, ? extends V> computer); in compute()
595 Impl(Strategy<K, V, E> strategy, Builder builder) { in Impl()
1466 @Override public void putAll(Map<? extends K, ? extends V> m) { in putAll()
1988 ComputingImpl(ComputingStrategy<K, V, E> strategy, Builder builder, in ComputingImpl()
1989 Function<? super K, ? extends V> computer) { in ComputingImpl()
2106 public SimpleInternalEntry<K, V> newEntry( in newEntry()
2110 public SimpleInternalEntry<K, V> copyEntry(K key, in copyEntry()
2115 public void setValue(SimpleInternalEntry<K, V> entry, V value) { in setValue()
2118 public V getValue(SimpleInternalEntry<K, V> entry) { in getValue()
2130 public K getKey(SimpleInternalEntry<K, V> entry) { in getKey()
2133 public SimpleInternalEntry<K, V> getNext(SimpleInternalEntry<K, V> entry) { in getNext()
2136 public int getHash(SimpleInternalEntry<K, V> entry) { in getHash()
2140 Internals<K, V, SimpleInternalEntry<K, V>> internals) { in setInternals()
2154 K key, int hash, @Nullable V value, SimpleInternalEntry<K, V> next) { in SimpleInternalEntry()