Searched defs:transitiveModules (Results 1 - 1 of 1) sorted by relevance

/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
H A DComponentDescriptor.java141 * Use {@link #transitiveModules} to get the full set of modules available upon traversing
153 ImmutableSet<ModuleDescriptor> transitiveModules() { method in class:ComponentDescriptor
154 Set<ModuleDescriptor> transitiveModules = new LinkedHashSet<>();
156 addTransitiveModules(transitiveModules, module);
158 return ImmutableSet.copyOf(transitiveModules);
162 return FluentIterable.from(transitiveModules())
168 Set<ModuleDescriptor> transitiveModules, ModuleDescriptor module) {
169 if (transitiveModules.add(module)) {
171 addTransitiveModules(transitiveModules, includedModule);
174 return transitiveModules;
167 addTransitiveModules( Set<ModuleDescriptor> transitiveModules, ModuleDescriptor module) argument
[all...]

Completed in 74 milliseconds