Searched refs:isFutureType (Results 1 – 4 of 4) sorted by relevance
20 import static dagger.internal.codegen.langmodel.DaggerTypes.isFutureType;67 if (isFutureType(producesMethod.getReturnType())) { in fromProducesMethod()71 && isFutureType(SetType.from(producesMethod.getReturnType()).elementType())) { in fromProducesMethod()
30 import static dagger.internal.codegen.langmodel.DaggerTypes.isFutureType;114 isFutureType(returnType) in forProductionComponentMethod()167 if (isFutureType(methodType.getReturnType())) { in forBindingMethod()172 if (isFutureType(setType.elementType())) { in forBindingMethod()
24 import static dagger.internal.codegen.langmodel.DaggerTypes.isFutureType;374 return isComponentContributionMethod(elements, method) && isFutureType(method.getReturnType()); in isComponentProductionMethod()
223 public static boolean isFutureType(TypeMirror type) { in isFutureType() method in DaggerTypes