Home
last modified time | relevance | path

Searched refs:nonObjectSuperclass (Results 1 – 5 of 5) sorted by relevance

/external/auto/common/src/test/java/com/google/auto/common/
DMoreTypesTest.java328 assertThat(MoreTypes.nonObjectSuperclass(types, elements, (DeclaredType) objectType)) in testNonObjectSuperclass()
330 assertThat(MoreTypes.nonObjectSuperclass(types, elements, (DeclaredType) interfaceType)) in testNonObjectSuperclass()
332 assertThat(MoreTypes.nonObjectSuperclass(types, elements, (DeclaredType) parent.asType())) in testNonObjectSuperclass()
336 MoreTypes.nonObjectSuperclass(types, elements, (DeclaredType) childA.asType()); in testNonObjectSuperclass()
338 MoreTypes.nonObjectSuperclass(types, elements, (DeclaredType) childB.asType()); in testNonObjectSuperclass()
340 MoreTypes.nonObjectSuperclass(types, elements, (DeclaredType) genericChild.asType()); in testNonObjectSuperclass()
342 MoreTypes.nonObjectSuperclass(types, elements, (DeclaredType) genericChildOfNumber); in testNonObjectSuperclass()
344 MoreTypes.nonObjectSuperclass(types, elements, (DeclaredType) genericChildOfInteger); in testNonObjectSuperclass()
/external/dagger2/java/dagger/internal/codegen/langmodel/
DDaggerTypes.java66 public Optional<DeclaredType> nonObjectSuperclass(DeclaredType type) { in nonObjectSuperclass() method in DaggerTypes
67 return Optional.ofNullable(MoreTypes.nonObjectSuperclass(types, elements, type).orNull()); in nonObjectSuperclass()
/external/dagger2/java/dagger/internal/codegen/validation/
DInjectBindingRegistryImpl.java292 for (Optional<DeclaredType> supertype = types.nonObjectSuperclass(type); in tryRegisterMembersInjectedType()
294 supertype = types.nonObjectSuperclass(supertype.get())) { in tryRegisterMembersInjectedType()
/external/dagger2/java/dagger/internal/codegen/binding/
DInjectionSiteFactory.java72 currentType = types.nonObjectSuperclass(currentType.get())) { in getInjectionSites()
/external/auto/common/src/main/java/com/google/auto/common/
DMoreTypes.java877 public static Optional<DeclaredType> nonObjectSuperclass(Types types, Elements elements, in nonObjectSuperclass() method in MoreTypes