Home
last modified time | relevance | path

Searched refs:TypeVariableKey (Results 1 – 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/reflect/
DTypeResolver.java91 Map<TypeVariableKey, Type> mappings = Maps.newHashMap(); in where()
97 TypeResolver where(Map<TypeVariableKey, ? extends Type> mappings) { in where() argument
102 final Map<TypeVariableKey, Type> mappings, Type from, final Type to) { in populateTypeMappings() argument
108 mappings.put(new TypeVariableKey(typeVariable), to); in populateTypeMappings()
215 private final ImmutableMap<TypeVariableKey, Type> map;
221 private TypeTable(ImmutableMap<TypeVariableKey, Type> map) { in TypeTable() argument
226 final TypeTable where(Map<TypeVariableKey, ? extends Type> mappings) { in where() argument
227 ImmutableMap.Builder<TypeVariableKey, Type> builder = ImmutableMap.builder(); in where()
229 for (Map.Entry<TypeVariableKey, ? extends Type> mapping : mappings.entrySet()) { in where()
230 TypeVariableKey variable = mapping.getKey(); in where()
[all …]
DTypeToken.java217 new TypeResolver.TypeVariableKey(typeParam.typeVariable), in where()