Home
last modified time | relevance | path

Searched refs:toImmutableSetMultimap (Results 1 – 14 of 14) sorted by relevance

/external/dagger2/java/dagger/model/
DBindingGraph.java25 import static dagger.internal.codegen.extension.DaggerStreams.toImmutableSetMultimap;
192 .collect(toImmutableSetMultimap(DependencyEdge::dependencyRequest, edge -> edge)); in dependencyEdges()
302 toImmutableSetMultimap( in nodesByClass()
/external/dagger2/java/dagger/internal/codegen/model/
DBindingGraph.java25 import static dagger.internal.codegen.extension.DaggerStreams.toImmutableSetMultimap;
191 .collect(toImmutableSetMultimap(DependencyEdge::dependencyRequest, edge -> edge)); in dependencyEdges()
301 toImmutableSetMultimap( in nodesByClass()
/external/dagger2/java/dagger/spi/model/
DBindingGraph.java25 import static dagger.internal.codegen.extension.DaggerStreams.toImmutableSetMultimap;
193 .collect(toImmutableSetMultimap(DependencyEdge::dependencyRequest, edge -> edge)); in dependencyEdges()
303 toImmutableSetMultimap( in nodesByClass()
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/
DTerritoryContainment.java6 import static com.google.common.collect.ImmutableSetMultimap.toImmutableSetMultimap;
91 .collect(toImmutableSetMultimap(Entry::getKey, Entry::getValue)); in TerritoryContainment()
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/regex/
DRegexTransformer.java9 import static com.google.common.collect.ImmutableSetMultimap.toImmutableSetMultimap;
63 rules.stream().collect(toImmutableSetMultimap(Rule::getDataType, Rule::getPathPrefix)); in RegexTransformer()
/external/dagger2/java/dagger/internal/codegen/bindinggraphvalidation/
DDuplicateBindingsValidator.java21 import static dagger.internal.codegen.extension.DaggerStreams.toImmutableSetMultimap;
126 toImmutableSetMultimap( in groupBindingsByKey()
336 .collect(toImmutableSetMultimap(BindingWithoutComponent::forBinding, b -> b)); in index()
/external/dagger2/java/dagger/internal/codegen/extension/
DDaggerStreams.java81 public static <T, K, V> Collector<T, ?, ImmutableSetMultimap<K, V>> toImmutableSetMultimap( in toImmutableSetMultimap() method in DaggerStreams
/external/dagger2/java/dagger/internal/codegen/validation/
DComponentDescriptorValidator.java32 import static dagger.internal.codegen.extension.DaggerStreams.toImmutableSetMultimap;
342 toImmutableSetMultimap( in validateCreators()
/external/guava/guava/src/com/google/common/collect/
DImmutableSetMultimap.java95 Collector<T, ?, ImmutableSetMultimap<K, V>> toImmutableSetMultimap( in toImmutableSetMultimap() method in ImmutableSetMultimap
98 return CollectCollectors.toImmutableSetMultimap(keyFunction, valueFunction); in toImmutableSetMultimap()
DCollectCollectors.java391 Collector<T, ?, ImmutableSetMultimap<K, V>> toImmutableSetMultimap(
/external/guava/android/guava/src/com/google/common/collect/
DImmutableSetMultimap.java97 Collector<T, ?, ImmutableSetMultimap<K, V>> toImmutableSetMultimap( in toImmutableSetMultimap() method in ImmutableSetMultimap
100 return CollectCollectors.toImmutableSetMultimap(keyFunction, valueFunction); in toImmutableSetMultimap()
DCollectCollectors.java396 Collector<T, ?, ImmutableSetMultimap<K, V>> toImmutableSetMultimap(
/external/truth/refactorings/src/main/java/com/google/common/truth/refactorings/
DCorrespondenceSubclassToFactoryCall.java23 import static com.google.common.collect.ImmutableSetMultimap.toImmutableSetMultimap;
377 .collect(toImmutableSetMultimap(m -> MemberType.from(m, state), m -> m)); in computePossibleReplacements()
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableSetMultimapTest.java519 ImmutableSetMultimap.toImmutableSetMultimap(Entry::getKey, Entry::getValue); in testToImmutableSetMultimap()