Home
last modified time | relevance | path

Searched refs:typeVariableName (Results 1 – 3 of 3) sorted by relevance

/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
DMethodWriter.java55 public void addTypeParameter(TypeVariableName typeVariableName) { in addTypeParameter() argument
56 this.typeParameters.add(typeVariableName); in addTypeParameter()
DClassWriter.java76 public void addTypeParameter(TypeVariableName typeVariableName) { in addTypeParameter() argument
77 this.typeParameters.add(typeVariableName); in addTypeParameter()
/external/mockito/src/test/java/org/mockito/internal/util/reflection/
DGenericMetadataSupportTest.java202 …private Type typeVariableValue(Map<TypeVariable<?>, Type> typeVariables, String typeVariableName) { in typeVariableValue() argument
204 if (typeVariableTypeEntry.getKey().getName().equals(typeVariableName)) { in typeVariableValue()
209 fail("'" + typeVariableName + "' was not found in " + typeVariables); in typeVariableValue()