Searched defs:valueType (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DCollections.java2998 * @param valueType the type of value that {@code m} is permitted to hold
3004 Class<V> valueType) {
3005 return new CheckedMap<>(m, keyType, valueType);
3019 final Class<V> valueType; field in class:Collections.CheckedMap
3025 if (value != null && !valueType.isInstance(value))
3046 " value into map with value type " + valueType;
3049 CheckedMap(Map<K, V> m, Class<K> keyType, Class<V> valueType) { argument
3052 this.valueType = Objects.requireNonNull(valueType);
3098 entrySet = new CheckedEntrySet<>(m.entrySet(), valueType);
3002 checkedMap(Map<K, V> m, Class<K> keyType, Class<V> valueType) argument
3180 private final Class<V> valueType; field in class:Collections.CheckedMap.CheckedEntrySet
3182 CheckedEntrySet(Set<Map.Entry<K, V>> s, Class<V> valueType) argument
3314 checkedEntry(Map.Entry<K,V> e, Class<T> valueType) argument
3328 private final Class<T> valueType; field in class:Collections.CheckedMap.CheckedEntrySet.CheckedEntry
3330 CheckedEntry(Map.Entry<K, V> e, Class<T> valueType) argument
3399 checkedSortedMap(SortedMap<K, V> m, Class<K> keyType, Class<V> valueType) argument
3415 CheckedSortedMap(SortedMap<K, V> m, Class<K> keyType, Class<V> valueType) argument
[all...]
/libcore/benchmarks/src/benchmarks/regression/
H A DR.java2446 public static final int valueType = 0; field in class:R

Completed in 870 milliseconds