Home
last modified time | relevance | path

Searched refs:currentSuperImplementation (Results 1 – 2 of 2) sorted by relevance

/external/dagger2/java/dagger/internal/codegen/
DComponentImplementation.java779 Optional<ComponentImplementation> currentSuperImplementation = superclassImplementation; in getCancellableProducerKeys() local
781 while (currentSuperImplementation.isPresent()) { in getCancellableProducerKeys()
782 cancelledKeysFromSuperclass.addAll(currentSuperImplementation.get().cancellableProducerKeys); in getCancellableProducerKeys()
783 currentSuperImplementation = currentSuperImplementation.get().superclassImplementation; in getCancellableProducerKeys()
DComponentImplementationBuilder.java453 for (Optional<ComponentImplementation> currentSuperImplementation = in overridesSuperclassConfigureInitialization()
455 currentSuperImplementation.isPresent(); in overridesSuperclassConfigureInitialization()
456 currentSuperImplementation = currentSuperImplementation.get().superclassImplementation()) { in overridesSuperclassConfigureInitialization()
458 currentSuperImplementation.get().configureInitializationMethod().map(m -> m.spec()); in overridesSuperclassConfigureInitialization()