Lines Matching refs:values
92 * values
94 * values for a given key
169 * values
170 * @param factory supplier of new, empty lists that will each hold all values
244 * values
245 * @param factory supplier of new, empty sets that will each hold all values
318 * values
320 * all values for a given key
451 transient Collection<V> values;
494 @Override public Collection<Collection<V>> values() {
498 = new UnmodifiableAsMapValues<V>(unmodifiableMap.values())
503 return values().contains(o);
543 @SuppressWarnings("hiding") Iterable<? extends V> values) {
561 @SuppressWarnings("hiding") Iterable<? extends V> values) {
565 @Override public Collection<V> values() {
566 Collection<V> result = values;
568 values = result = Collections.unmodifiableCollection(delegate.values());
628 K key, @SuppressWarnings("hiding") Iterable<? extends V> values) {
656 K key, @SuppressWarnings("hiding") Iterable<? extends V> values) {
677 K key, @SuppressWarnings("hiding") Iterable<? extends V> values) {
1014 public boolean putAll(K key, Iterable<? extends V> values) {
1022 public Set<V> replaceValues(K key, Iterable<? extends V> values) {
1031 Set<V> values = new HashSet<V>(2);
1033 return values;
1035 values.add(map.remove(key));
1036 return values;
1051 public Collection<V> values() {
1052 return map.values();
1181 * values. Each value will be stored as a value in the resulting multimap,
1201 * <p>The returned multimap is serializable if its keys and values are all
1204 * @param values the values to use when constructing the {@code
1211 * <li> {@code values} is null
1213 * <li> An element in {@code values} is null
1214 * <li> {@code keyFunction} returns null for any element of {@code values}
1218 Iterable<V> values, Function<? super V, K> keyFunction) {
1222 for (V value : values) {
1223 Preconditions.checkNotNull(value, values);