OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:createcollection
(Results
1 - 25
of
41
) sorted by null
1
2
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
TestMultimapGenerator.java
44
Collection<V>
createCollection
(Iterable<? extends V> values);
MultimapTestSuiteBuilder.java
323
private Collection<V>
createCollection
(V v) {
325
.
createCollection
(Collections.singleton(v));
335
mapEntry(sampleKeys.e0,
createCollection
(sampleValues.e0)),
336
mapEntry(sampleKeys.e1,
createCollection
(sampleValues.e1)),
337
mapEntry(sampleKeys.e2,
createCollection
(sampleValues.e2)),
338
mapEntry(sampleKeys.e3,
createCollection
(sampleValues.e3)),
339
mapEntry(sampleKeys.e4,
createCollection
(sampleValues.e4)));
676
public Collection<V>
createCollection
(Iterable<? extends V> values) {
678
.
createCollection
(values);
TestStringListMultimapGenerator.java
59
public Collection<String>
createCollection
(Iterable<? extends String> values) {
TestStringSetMultimapGenerator.java
58
public Collection<String>
createCollection
(Iterable<? extends String> values) {
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractMapBasedMultimap.java
51
* #
createCollection
()}, which creates an empty collection of values for a key.
55
* in the multimap, {@code AbstractMapBasedMultimap} calls {@link #
createCollection
()}
57
* {@link #
createCollection
()} directly, and a new instance should be created
61
* construction, and {@link #
createCollection
()} could return a {@link
68
* <p>The collections created by {@link #
createCollection
()} may or may not
76
* multimap, even if the underlying map and {@link #
createCollection
()} method
96
*
createCollection
is added to the map. That same collection instance
140
return unmodifiableCollectionSubclass(
createCollection
());
147
* Each call to {@code
createCollection
} should create a new instance.
154
abstract Collection<V>
createCollection
();
[
all
...]
TreeMultimap.java
135
@Override SortedSet<V>
createCollection
() {
140
Collection<V>
createCollection
(@Nullable K key) {
144
return super.
createCollection
(key);
HashMultimap.java
108
@Override Set<V>
createCollection
() {
ArrayListMultimap.java
124
@Override List<V>
createCollection
() {
LinkedHashMultimap.java
240
Set<V>
createCollection
() {
254
Collection<V>
createCollection
(K key) {
ImmutableSetMultimap.java
153
@Override Collection<V>
createCollection
() {
Multimaps.java
121
@Override protected Collection<V>
createCollection
() {
182
@Override protected List<V>
createCollection
() {
239
@Override protected Set<V>
createCollection
() {
298
@Override protected SortedSet<V>
createCollection
() {
[
all
...]
/external/guava/guava/src/com/google/common/collect/
AbstractListMultimap.java
30
* {@code Lists}. The {@link #
createCollection
} method must return a {@code
49
@Override abstract List<V>
createCollection
();
AbstractSortedSetMultimap.java
32
* collections into sorted sets. The {@link #
createCollection
} method
51
abstract SortedSet<V>
createCollection
();
57
return Collections.unmodifiableSortedSet(
createCollection
());
AbstractMapBasedMultimap.java
54
* #
createCollection
()}, which creates an empty collection of values for a key.
58
* in the multimap, {@code AbstractMapBasedMultimap} calls {@link #
createCollection
()}
60
* {@link #
createCollection
()} directly, and a new instance should be created
64
* construction, and {@link #
createCollection
()} could return a {@link
71
* <p>The collections created by {@link #
createCollection
()} may or may not
79
* multimap, even if the underlying map and {@link #
createCollection
()} method
99
*
createCollection
is added to the map. That same collection instance
143
return unmodifiableCollectionSubclass(
createCollection
());
150
* Each call to {@code
createCollection
} should create a new instance.
157
abstract Collection<V>
createCollection
();
[
all
...]
TreeMultimap.java
141
@Override SortedSet<V>
createCollection
() {
146
Collection<V>
createCollection
(@Nullable K key) {
150
return super.
createCollection
(key);
AbstractSetMultimap.java
30
* {@code Sets}. The {@link #
createCollection
} method must return a {@code Set}.
47
@Override abstract Set<V>
createCollection
();
LinkedHashMultimap.java
244
Set<V>
createCollection
() {
258
Collection<V>
createCollection
(K key) {
566
map.put(key,
createCollection
(key));
ArrayListMultimap.java
129
@Override List<V>
createCollection
() {
HashMultimap.java
113
@Override Set<V>
createCollection
() {
ImmutableSetMultimap.java
159
@Override Collection<V>
createCollection
() {
/external/guava/guava-gwt/src/com/google/common/collect/
LinkedHashMultimap_CustomFieldSerializer.java
48
map.put(key, multimap.
createCollection
(key));
/external/guava/guava-tests/test/com/google/common/collect/
MultimapsCollectionTest.java
338
public Collection<String>
createCollection
(Iterable<? extends String> values) {
528
public Collection<Integer>
createCollection
(Iterable<? extends Integer> values) {
551
public Collection<Integer>
createCollection
(Iterable<? extends Integer> values) {
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/0.13.1513/
kotlin-compiler-embeddable-0.13.1513.jar
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/0.13.1514/
kotlin-compiler-embeddable-0.13.1514.jar
/prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.0.0/
kotlin-compiler-embeddable-1.0.0.jar
Completed in 594 milliseconds
1
2