HomeSort by relevance Sort by last modified time
    Searched full:multimap (Results 26 - 50 of 101) sorted by null

12 3 4 5

  /external/guava/src/com/google/common/collect/
AbstractListMultimap.java 40 * Creates a new multimap that uses the provided map.
65 * Stores a key-value pair in the multimap.
67 * @param key key to store in the multimap
68 * @param value value to store in the multimap
76 * Compares the specified object to this multimap for equality.
ListMultimap.java 28 * A {@code Multimap} that can hold duplicate key-value pairs and that maintains
39 public interface ListMultimap<K, V> extends Multimap<K, V> {
45 * {@link java.util.Collection} specified in the {@link Multimap} interface.
54 * {@link java.util.Collection} specified in the {@link Multimap} interface.
63 * {@link java.util.Collection} specified in the {@link Multimap} interface.
76 * Compares the specified object to this multimap for equality.
Synchronized.java 585 * Returns a synchronized (thread-safe) multimap backed by the specified
586 * multimap using the specified mutex. In order to guarantee serial access, it
587 * is critical that <b>all</b> access to the backing multimap is accomplished
588 * through the returned multimap.
591 * mutex when accessing any of the return multimap's collection views:
594 * Multimap<K, V> m = Synchronized.multimap(
608 * @param multimap the multimap to be wrapped in a synchronized view
609 * @return a synchronized view of the specified multimap
611 public static <K, V> Multimap<K, V> multimap( method in class:Synchronized
    [all...]
AbstractMultimap.java 45 * Basic implementation of the {@link Multimap} interface. This class represents
46 * a multimap as a map that associates each key with a collection of values. All
47 * methods of {@link Multimap} are supported, including those specified as
50 * <p>To implement a multimap, a subclass must define the method {@link
53 * <p>The multimap constructor takes a map that has a single entry for each
55 * in the multimap, {@code AbstractMultimap} calls {@link #createCollection()}
62 * java.util.TreeSet}, in which case the multimap's iterators would propagate
76 * multimap, even if the underlying map and {@link #createCollection()} method
78 * allow concurrent update operations, wrap your multimap with a call to {@link
87 abstract class AbstractMultimap<K, V> implements Multimap<K, V>, Serializable
    [all...]
AbstractSortedSetMultimap.java 39 * Creates a new multimap that uses the provided map.
  /external/guava/javadoc/com/google/common/collect/
SetMultimap.html 95 <DT><B>All Superinterfaces:</B> <DD><A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;K,V&gt;</DD>
105 <DT><PRE>public interface <B>SetMultimap&lt;K,V&gt;</B><DT>extends <A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;K,V&gt;</DL>
109 A <code>Multimap</code> that cannot hold duplicate key-value pairs. Adding a
110 key-value pair that's already in the multimap has no effect.
143 in the multimap.</TD>
159 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Compares the specified object to this multimap for equality.</TD>
188 &nbsp;<A NAME="methods_inherited_from_class_com.google.common.collect.Multimap"><!-- --></A>
191 <TH ALIGN="left"><B>Methods inherited from interface com.google.common.collect.<A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A></B></TH
    [all...]
ListMultimap.html 95 <DT><B>All Superinterfaces:</B> <DD><A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;K,V&gt;</DD>
102 <DT><PRE>public interface <B>ListMultimap&lt;K,V&gt;</B><DT>extends <A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;K,V&gt;</DL>
106 A <code>Multimap</code> that can hold duplicate key-value pairs and that maintains
140 in the multimap.</TD>
148 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Compares the specified object to this multimap for equality.</TD>
177 &nbsp;<A NAME="methods_inherited_from_class_com.google.common.collect.Multimap"><!-- --></A>
180 <TH ALIGN="left"><B>Methods inherited from interface com.google.common.collect.<A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A></B></TH
    [all...]
SortedSetMultimap.html 95 <DT><B>All Superinterfaces:</B> <DD><A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;K,V&gt;, <A HREF="../../../../com/google/common/collect/SetMultimap.html" title="interface in com.google.common.collect">SetMultimap</A>&lt;K,V&gt;</DD>
108 key-value pairs; adding a key-value pair that's already in the multimap has
109 no effect. This interface does not specify the ordering of the multimap's
113 each return a <A HREF="http://java.sun.com/javase/6/docs/api/java/util/SortedSet.html?is-external=true" title="class or interface in java.util"><CODE>SortedSet</CODE></A> of values, while <A HREF="../../../../com/google/common/collect/Multimap.html#entries()"><CODE>Multimap.entries()</CODE></A>
145 in the multimap.</TD>
179 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the comparator that orders the multimap values, with a <code>null</code>
192 &nbsp;<A NAME="methods_inherited_from_class_com.google.common.collect.Multimap"><!-- --></A>
195 <TH ALIGN="left"><B>Methods inherited from interface com.google.common.collect.<A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A></B></TH
    [all...]
ImmutableListMultimap.html 100 <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../com/google/common/collect/ListMultimap.html" title="interface in com.google.common.collect">ListMultimap</A>&lt;K,V&gt;, <A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;K,V&gt;, <A HREF="http://java.sun.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</A></DD>
112 a <i>view</i> of a separate multimap which can still change, an instance of
116 you easily make a "defensive copy" of a multimap provided to your class by
186 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ImmutableListMultimap.html#copyOf(com.google.common.collect.Multimap)">copyOf</A></B>(<A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;? extends K,? extends V&gt;&nbsp;multimap)</CODE>
189 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an immutable multimap containing the same mappings as
190 <code>multimap</code>.</TD
    [all...]
ImmutableSetMultimap.html 100 <DT><B>All Implemented Interfaces:</B> <DD><A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;K,V&gt;, <A HREF="../../../../com/google/common/collect/SetMultimap.html" title="interface in com.google.common.collect">SetMultimap</A>&lt;K,V&gt;, <A HREF="http://java.sun.com/javase/6/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</A></DD>
112 a <i>view</i> of a separate multimap which can still change, an instance of
116 you easily make a "defensive copy" of a multimap provided to your class by
186 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ImmutableSetMultimap.html#copyOf(com.google.common.collect.Multimap)">copyOf</A></B>(<A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;? extends K,? extends V&gt;&nbsp;multimap)</CODE>
189 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an immutable set multimap containing the same mappings as
190 <code>multimap</code>.</TD
    [all...]
ImmutableListMultimap.Builder.html 110 <pre> <code>static final Multimap&lt;String, Integer&gt; STRING_TO_INTEGER_MULTIMAP =
118 multiple times to build multiple multimaps in series. Each multimap
157 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a newly-created immutable multimap.</TD>
166 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adds a key-value mapping to the built multimap.</TD>
175 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Stores a collection of values with the same key in the built multimap.</TD>
184 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Stores an array of values with the same key in the built multimap.</TD>
189 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ImmutableListMultimap.Builder.html#putAll(com.google.common.collect.Multimap)">putAll</A></B>(<A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;? extends <A HREF="../../../../com/google/common/collect/ImmutableListMultimap.Builder.html" title="type parameter in ImmutableListMultimap.Builder">K</A>,? extends <A HREF="../../../../com/google/common/collect/ImmutableListMultimap.Builder.html" title="type parameter in ImmutableListMultimap.Builder">V</A>&gt;&nbsp;multimap)</CODE
    [all...]
ImmutableMultimap.Builder.html 110 A builder for creating immutable multimap instances, especially
112 <pre> <code>static final Multimap&lt;String, Integer&gt; STRING_TO_INTEGER_MULTIMAP =
120 multiple times to build multiple multimaps in series. Each multimap
159 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a newly-created immutable multimap.</TD>
168 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adds a key-value mapping to the built multimap.</TD>
177 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Stores a collection of values with the same key in the built multimap.</TD>
186 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Stores an array of values with the same key in the built multimap.</TD>
191 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ImmutableMultimap.Builder.html#putAll(com.google.common.collect.Multimap)">putAll</A></B>(<A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;? extends <A HREF="../../../../com/google/common/collect/ImmutableMultimap.Builder.html" ti (…)
    [all...]
ImmutableSetMultimap.Builder.html 110 <pre> <code>static final Multimap&lt;String, Integer&gt; STRING_TO_INTEGER_MULTIMAP =
118 multiple times to build multiple multimaps in series. Each multimap
157 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a newly-created immutable set multimap.</TD>
166 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adds a key-value mapping to the built multimap if it is not already
176 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Stores a collection of values with the same key in the built multimap.</TD>
185 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Stores an array of values with the same key in the built multimap.</TD>
190 <TD><CODE><B><A HREF="../../../../com/google/common/collect/ImmutableSetMultimap.Builder.html#putAll(com.google.common.collect.Multimap)">putAll</A></B>(<A HREF="../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;? extends <A HREF="../../../../com/google/common/collect/ImmutableSetMultimap.Builder.html" title="type parameter in ImmutableSetMultimap.Builder">K</A>,? extends <A HREF="../../../../com/google/common/collect/ImmutableSetMultimap.Builder.html" title="type parameter in ImmutableSetMultimap.Builder">V</A>&gt;&nbsp;multimap)</CODE
    [all...]
  /external/stlport/stlport/stl/
_map.h 237 class multimap class in inherits:__stlport_class
239 : public __stlport_class<multimap<_Key, _Tp, _Compare, _Alloc> >
242 typedef multimap<_Key, _Tp, _Compare, _Alloc> _Self;
254 friend class multimap<_Key,_Tp,_Compare,_Alloc>;
287 _Rep_type _M_t; // red-black tree representing multimap
292 multimap() : _M_t(_Compare(), allocator_type()) { } function in class:multimap
293 explicit multimap(const _Compare& __comp, function in class:multimap
299 multimap(_InputIterator __first, _InputIterator __last) function in class:multimap
304 multimap(_InputIterator __first, _InputIterator __last, function in class:multimap
309 multimap(_InputIterator __first, _InputIterator __last function in class:multimap
314 multimap(const value_type* __first, const value_type* __last) function in class:multimap
317 multimap(const value_type* __first, const value_type* __last, function in class:multimap
322 multimap(const_iterator __first, const_iterator __last) function in class:multimap
325 multimap(const_iterator __first, const_iterator __last, function in class:multimap
331 multimap(const _Self& __x) : _M_t(__x._M_t) {} function in class:multimap
334 multimap(__move_source<_Self> src) function in class:multimap
    [all...]
_config_compat_post.h 40 # define __multimap__ multimap
  /ndk/sources/android/stlport/stlport/stl/
_map.h 237 class multimap class in inherits:__stlport_class
239 : public __stlport_class<multimap<_Key, _Tp, _Compare, _Alloc> >
242 typedef multimap<_Key, _Tp, _Compare, _Alloc> _Self;
254 friend class multimap<_Key,_Tp,_Compare,_Alloc>;
287 _Rep_type _M_t; // red-black tree representing multimap
292 multimap() : _M_t(_Compare(), allocator_type()) { } function in class:multimap
293 explicit multimap(const _Compare& __comp, function in class:multimap
299 multimap(_InputIterator __first, _InputIterator __last) function in class:multimap
304 multimap(_InputIterator __first, _InputIterator __last, function in class:multimap
309 multimap(_InputIterator __first, _InputIterator __last function in class:multimap
314 multimap(const value_type* __first, const value_type* __last) function in class:multimap
317 multimap(const value_type* __first, const value_type* __last, function in class:multimap
322 multimap(const_iterator __first, const_iterator __last) function in class:multimap
325 multimap(const_iterator __first, const_iterator __last, function in class:multimap
331 multimap(const _Self& __x) : _M_t(__x._M_t) {} function in class:multimap
334 multimap(__move_source<_Self> src) function in class:multimap
    [all...]
_config_compat_post.h 40 # define __multimap__ multimap
  /external/stlport/test/unit/
mvctor_declaration_test.cpp 291 //associative containers, set multiset, map, multimap:
333 //multimap
334 CPPUNIT_ASSERT( is_movable(multimap<char, char>()) );
335 CPPUNIT_ASSERT( is_movable(multimap<specially_allocated_struct, char>()) );
337 CPPUNIT_ASSERT( is_move_complete(multimap<char, char>()) );
339 CPPUNIT_ASSERT( is_move_complete(multimap<specially_allocated_struct, char>()) );
341 CPPUNIT_ASSERT( !is_move_complete(multimap<char, char>()) );
map_test.cpp 79 typedef multimap<char, int, less<char> > mmap;
121 typedef multimap<int, char, less<int> > mmap;
157 typedef multimap<int, char, less<int> > mmap;
190 * A check that map and multimap iterators are NOT comparable
388 typedef multimap<Key, int, KeyCmp> Container;
413 typedef multimap<Key const volatile*, int, KeyCmpPtr> Container;
450 multimap<IncompleteClass, IncompleteClass> minstances;
451 typedef multimap<IncompleteClass, IncompleteClass>::iterator mit;
  /ndk/sources/android/stlport/test/unit/
mvctor_declaration_test.cpp 291 //associative containers, set multiset, map, multimap:
333 //multimap
334 CPPUNIT_ASSERT( is_movable(multimap<char, char>()) );
335 CPPUNIT_ASSERT( is_movable(multimap<specially_allocated_struct, char>()) );
337 CPPUNIT_ASSERT( is_move_complete(multimap<char, char>()) );
339 CPPUNIT_ASSERT( is_move_complete(multimap<specially_allocated_struct, char>()) );
341 CPPUNIT_ASSERT( !is_move_complete(multimap<char, char>()) );
map_test.cpp 79 typedef multimap<char, int, less<char> > mmap;
121 typedef multimap<int, char, less<int> > mmap;
157 typedef multimap<int, char, less<int> > mmap;
190 * A check that map and multimap iterators are NOT comparable
388 typedef multimap<Key, int, KeyCmp> Container;
413 typedef multimap<Key const volatile*, int, KeyCmpPtr> Container;
450 multimap<IncompleteClass, IncompleteClass> minstances;
451 typedef multimap<IncompleteClass, IncompleteClass>::iterator mit;
  /external/nist-sip/java/gov/nist/core/
MultiMap.java 33 public interface MultiMap extends Map {
  /external/guava/javadoc/com/google/common/collect/class-use/
ImmutableListMultimap.html 120 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a newly-created immutable multimap.</TD>
132 <TD><CODE><B>ImmutableListMultimap.</B><B><A HREF="../../../../../com/google/common/collect/ImmutableListMultimap.html#copyOf(com.google.common.collect.Multimap)">copyOf</A></B>(<A HREF="../../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;? extends K,? extends V&gt;&nbsp;multimap)</CODE>
135 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an immutable multimap containing the same mappings as
136 <code>multimap</code>.</TD>
169 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the empty multimap.</TD>
185 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an immutable multimap containing a single entry.</TD>
203 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an immutable multimap containing the given entries, in order.</TD
    [all...]
ImmutableMultimap.html 146 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a newly-created immutable multimap.</TD>
158 <TD><CODE><B>ImmutableMultimap.</B><B><A HREF="../../../../../com/google/common/collect/ImmutableMultimap.html#copyOf(com.google.common.collect.Multimap)">copyOf</A></B>(<A HREF="../../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;? extends K,? extends V&gt;&nbsp;multimap)</CODE>
161 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an immutable multimap containing the same mappings as
162 <code>multimap</code>.</TD>
177 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an empty multimap.</TD>
193 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an immutable multimap containing a single entry.</TD>
211 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an immutable multimap containing the given entries, in order.</TD
    [all...]
ImmutableSetMultimap.html 120 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns a newly-created immutable set multimap.</TD>
132 <TD><CODE><B>ImmutableSetMultimap.</B><B><A HREF="../../../../../com/google/common/collect/ImmutableSetMultimap.html#copyOf(com.google.common.collect.Multimap)">copyOf</A></B>(<A HREF="../../../../../com/google/common/collect/Multimap.html" title="interface in com.google.common.collect">Multimap</A>&lt;? extends K,? extends V&gt;&nbsp;multimap)</CODE>
135 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an immutable set multimap containing the same mappings as
136 <code>multimap</code>.</TD>
151 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns the empty multimap.</TD>
167 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an immutable multimap containing a single entry.</TD>
185 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Returns an immutable multimap containing the given entries, in order.</TD
    [all...]

Completed in 2551 milliseconds

12 3 4 5