OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Multimap
(Results
1 - 25
of
92
) sorted by null
1
2
3
4
/external/guava/guava/src/com/google/common/collect/
Multimap.java
31
* contents of a
multimap
either as a map from keys to <i>nonempty</i>
48
* multimaps are <i>implemented</i>, the design of the {@code
Multimap
} API is
49
* based on the <i>second</i> form. So, using the
multimap
shown above as an
52
* those times when the first style is more useful, use the
multimap
's {@link
59
* ListMultimap<String, String>
multimap
= ArrayListMultimap.create();
61
*
multimap
.put(pres.firstName(), pres.lastName());
63
* for (String firstName :
multimap
.keySet()) {
64
* List<String> lastNames =
multimap
.get(firstName);
78
* <p>Much of the power of the
multimap
API comes from the <i>view
80
*
multimap
itself. When they support modification, the changes ar
[
all
...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
WifiTracker.java
479
Multimap
<String, AccessPoint> apMap = new
Multimap
<String, AccessPoint>();
[
all
...]