Home
last modified time | relevance | path

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

/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DMethodSignature.java16 abstract ImmutableList<Equivalence.Wrapper<TypeMirror>> thrownTypes(); in thrownTypes() method in MethodSignature
21 ImmutableList.Builder<Equivalence.Wrapper<TypeMirror>> thrownTypes = ImmutableList.builder(); in fromExecutableType() local
26 thrownTypes.add(MoreTypes.equivalence().wrap(thrownType)); in fromExecutableType()
31 thrownTypes.build()); in fromExecutableType()
DProducerFactoryGenerator.java209 getThrowsClause(binding.thrownTypes()), in write()
506 private Snippet getThrowsClause(List<? extends TypeMirror> thrownTypes) {
507 if (thrownTypes.isEmpty()) {
512 .from(thrownTypes)
DProductionBinding.java74 abstract ImmutableList<? extends TypeMirror> thrownTypes(); in thrownTypes() method in ProductionBinding