OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:asMap
(Results
1 - 19
of
19
) sorted by null
/external/guava/src/com/google/common/collect/
ListMultimap.java
33
* so explicitly, the map returned by {@link #
asMap
} has {@code List} values.
73
Map<K, Collection<V>>
asMap
();
SetMultimap.java
34
* the map returned by {@link #
asMap
} has {@code Set} values.
85
Map<K, Collection<V>>
asMap
();
SortedSetMultimap.java
39
* so explicitly, the map returned by {@link #
asMap
} has {@code SortedSet}
88
* <p>The collections returned by {@code
asMap
().get(Object)} have the same
94
Map<K, Collection<V>>
asMap
();
ForwardingMultimap.java
44
public Map<K, Collection<V>>
asMap
() {
45
return delegate().
asMap
();
Multimap.java
34
* {@link #entries}, and {@link #
asMap
} return collections that are views of the
229
* <p>The collections returned by {@code
asMap
().get(Object)} have the same
234
Map<K, Collection<V>>
asMap
();
240
* multimaps are equal when their map views, as returned by {@link #
asMap
},
250
* {@link ListMultimap}, since their {@link #
asMap
} views contain unequal
252
* they both have empty {@link #
asMap
} views.
260
* as returned by {@link Multimap#
asMap
}.
TreeMultimap.java
47
* <p>The collections returned by {@code keySet} and {@code
asMap
} iterate
180
@Override public SortedMap<K, Collection<V>>
asMap
() {
181
return (SortedMap<K, Collection<V>>) super.
asMap
();
Multimaps.java
466
@Override public Map<K, Collection<V>>
asMap
() {
470
= Collections.unmodifiableMap(delegate.
asMap
());
824
* Returns an unmodifiable view of the specified multimap {@code
asMap
} entry.
[
all
...]
Serialization.java
155
* change while the method is running. The {@link Multimap#
asMap
} view
165
stream.writeInt(multimap.
asMap
().size());
166
for (Map.Entry<K, Collection<V>> entry : multimap.
asMap
().entrySet()) {
ImmutableMultimap.java
182
* of the {@code multimap.
asMap
()} view, with new keys and values following
190
: multimap.
asMap
().entrySet()) {
207
* correspond to the iteration ordering of the {@code multimap.
asMap
()} view.
358
return this.map.equals(that.
asMap
());
387
public ImmutableMap<K, Collection<V>>
asMap
() {
ImmutableSetMultimap.java
218
* of the {@code multimap.
asMap
()} view, with new keys and values following
227
: multimap.
asMap
().entrySet()) {
244
* correspond to the iteration ordering of the {@code multimap.
asMap
()} view.
272
: multimap.
asMap
().entrySet()) {
Synchronized.java
622
transient Map<K, Collection<V>>
asMap
;
739
public Map<K, Collection<V>>
asMap
() {
741
if (
asMap
== null) {
742
asMap
= new SynchronizedAsMap<K, V>(delegate().
asMap
(), mutex);
744
return
asMap
;
[
all
...]
LinkedListMultimap.java
70
* <p>The collections returned by {@link #keySet} and {@link #
asMap
} iterate
82
* {@link #entries}, and {@link #
asMap
} return collections that are views of the
845
public Map<K, Collection<V>>
asMap
() {
896
return this.
asMap
().equals(that.
asMap
());
905
* as returned by {@link Multimap#
asMap
}.
908
return
asMap
().hashCode();
913
* {@code toString} on the map returned by {@link Multimap#
asMap
}.
918
return
asMap
().toString();
AbstractMultimap.java
1074
=
asMap
().entrySet().iterator();
[
all
...]
ImmutableListMultimap.java
194
* of the {@code multimap.
asMap
()} view, with new keys and values following
217
* correspond to the iteration ordering of the {@code multimap.
asMap
()} view.
243
: multimap.
asMap
().entrySet()) {
/external/protobuf/java/src/test/java/com/google/protobuf/
UnknownFieldSetTest.java
76
unknownFields.
asMap
().entrySet()) {
137
assertEquals(1, group.
asMap
().size());
199
assertTrue(fields.
asMap
().isEmpty());
221
assertEquals(1, destination.getUnknownFields().
asMap
().size());
249
assertEquals(unknownFields.
asMap
().size(),
250
message.getUnknownFields().
asMap
().size());
WireFormatTest.java
355
assertTrue(raw.getUnknownFields().
asMap
().isEmpty());
420
assertEquals(1, unknownFields.
asMap
().size());
/external/protobuf/java/src/main/java/com/google/protobuf/
UnknownFieldSet.java
109
public Map<Integer, Field>
asMap
() {
449
public Map<Integer, Field>
asMap
() {
TextFormat.java
252
unknownFields.
asMap
().entrySet()) {
[
all
...]
/prebuilt/common/tradefed/
tradefed-prebuilt.jar
Completed in 299 milliseconds