Home
last modified time | relevance | path

Searched refs:typeVariableNames (Results 1 – 10 of 10) sorted by relevance

/external/auto/value/src/main/java/com/google/auto/value/extension/serializable/processor/
DSerializableAutoValueExtension.java89 private final ImmutableList<TypeVariableName> typeVariableNames; field in SerializableAutoValueExtension.Generator
111 this.typeVariableNames = in Generator()
119 typeVariableNames); in Generator()
122 classTypeName, typeVariableNames, propertyMirrors, buildSerializersMap()); in Generator()
135 .superclass(getClassTypeName(superclass, typeVariableNames)) in generate()
136 .addTypeVariables(typeVariableNames) in generate()
180 typeVariableNames), in writeReplace()
199 ClassName className, List<TypeVariableName> typeVariableNames) { in getClassTypeName() argument
200 return typeVariableNames.isEmpty() in getClassTypeName()
202 : ParameterizedTypeName.get(className, typeVariableNames.toArray(new TypeName[] {})); in getClassTypeName()
[all …]
/external/auto/value/src/main/java/com/google/auto/value/extension/toprettystring/processor/
DExtensionClassTypeSpecBuilder.java96 ImmutableList<TypeVariableName> typeVariableNames = typeVariableNames(); in superType() local
98 return typeVariableNames.isEmpty() in superType()
100 : ParameterizedTypeName.get(superType, typeVariableNames.toArray(new TypeName[] {})); in superType()
103 private ImmutableList<TypeVariableName> typeVariableNames() { in typeVariableNames() method in ExtensionClassTypeSpecBuilder
/external/auto/factory/src/main/java/com/google/auto/factory/processor/
DFactoryWriter.java115 TypeSpec.Builder factory, ImmutableSet<TypeVariableName> typeVariableNames) { in addFactoryTypeParameters() argument
116 factory.addTypeVariables(typeVariableNames); in addFactoryTypeParameters()
350 ImmutableSet.Builder<TypeVariableName> typeVariableNames = ImmutableSet.builder(); in getReferencedTypeParameterNames() local
352 typeVariableNames.add(TypeVariableName.get(typeVariable)); in getReferencedTypeParameterNames()
354 return typeVariableNames.build(); in getReferencedTypeParameterNames()
/external/dagger2/java/dagger/internal/codegen/processingstep/
DAssistedFactoryProcessingStep.java35 import static dagger.internal.codegen.xprocessing.XTypeElements.typeVariableNames;
281 .addTypeVariables(typeVariableNames(factory)); in topLevelTypes()
324 .addTypeVariables(typeVariableNames(metadata.assistedInjectElement())) in topLevelTypes()
345 .addTypeVariables(typeVariableNames(metadata.assistedInjectElement())) in topLevelTypes()
/external/auto/value/src/main/java/com/google/auto/value/extension/memoized/processor/
DMemoizeExtension.java172 ImmutableList<TypeVariableName> typeVariableNames = typeVariableNames(); in superType() local
174 return typeVariableNames.isEmpty() in superType()
176 : ParameterizedTypeName.get(superType, typeVariableNames.toArray(new TypeName[] {})); in superType()
179 private ImmutableList<TypeVariableName> typeVariableNames() { in typeVariableNames() method in MemoizeExtension.Generator
/external/doclava/src/com/google/doclava/apicheck/
DApiFile.java301 HashSet<String> typeVariableNames; in parseMethod() local
348 typeVariableNames = TypeInfo.typeVariables(typeParameters); in parseMethod()
349 if (typeVariableNames.contains(returnType.qualifiedTypeName())) { in parseMethod()
367 parseParameterList(tokenizer, method, typeVariableNames, token); in parseMethod()
/external/dagger2/java/dagger/internal/codegen/writing/
DMembersInjectorGenerator.java50 import static dagger.internal.codegen.xprocessing.XTypeElements.typeVariableNames;
176 .addTypeVariables(typeVariableNames(enclosingType)) in methodInjectionMethod()
201 .addTypeVariables(typeVariableNames(enclosingType)); in fieldInjectionMethod()
DFactoryGenerator.java47 import static dagger.internal.codegen.xprocessing.XTypeElements.typeVariableNames;
371 .addTypeVariables(typeVariableNames(enclosingType)) in staticProxyMethodForInjection()
402 builder.addTypeVariables(typeVariableNames(enclosingType)); in staticProxyMethodForProvision()
/external/dagger2/java/dagger/internal/codegen/binding/
DSourceFiles.java35 import static dagger.internal.codegen.xprocessing.XTypeElements.typeVariableNames;
306 return typeVariableNames(binding.bindingTypeElement().get()); in bindingTypeElementTypeVariableNames()
/external/dagger2/java/dagger/internal/codegen/xprocessing/
DXTypeElements.java54 public static ImmutableList<TypeVariableName> typeVariableNames(XTypeElement typeElement) { in typeVariableNames() method in XTypeElements