HomeSort by relevance Sort by last modified time
    Searched refs:multimap (Results 176 - 200 of 372) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Synchronized.java 487 static <K, V> Multimap<K, V> multimap( method in class:Synchronized
488 Multimap<K, V> multimap, @Nullable Object mutex) {
489 if (multimap instanceof SynchronizedMultimap ||
490 multimap instanceof ImmutableMultimap) {
491 return multimap;
493 return new SynchronizedMultimap<K, V>(multimap, mutex);
497 implements Multimap<K, V> {
505 @Override Multimap<K, V> delegate()
    [all...]
ImmutableListMultimap.java 33 * a <i>view</i> of a separate multimap which can still change, an instance of
37 * you easily make a "defensive copy" of a multimap provided to your class by
52 /** Returns the empty multimap. */
53 // Casting is safe because the multimap will never hold any elements.
60 * Returns an immutable multimap containing a single entry.
70 * Returns an immutable multimap containing the given entries, in order.
81 * Returns an immutable multimap containing the given entries, in order.
94 * Returns an immutable multimap containing the given entries, in order.
108 * Returns an immutable multimap containing the given entries, in order.
137 * static final Multimap<String, Integer> STRING_TO_INTEGER_MULTIMAP
    [all...]
Multimaps.java 53 * Provides static methods acting on or generating a {@code Multimap}.
66 * Creates a new {@code Multimap} that uses the provided map and factory. It
67 * can generate a multimap based on arbitrary {@link Map} and
71 * multimap iteration order. They also specify the behavior of the
73 * multimap and its returned views. However, the multimap's {@code get}
77 * <p>The multimap is serializable if {@code map}, {@code factory}, the
78 * collections generated by {@code factory}, and the multimap contents are all
81 * <p>The multimap is not threadsafe when any concurrent operations update the
82 * multimap, even if {@code map} and the instances generated b
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableListMultimap.java 38 * a <i>view</i> of a separate multimap which can still change, an instance of
42 * you easily make a "defensive copy" of a multimap provided to your class by
57 /** Returns the empty multimap. */
58 // Casting is safe because the multimap will never hold any elements.
65 * Returns an immutable multimap containing a single entry.
75 * Returns an immutable multimap containing the given entries, in order.
86 * Returns an immutable multimap containing the given entries, in order.
99 * Returns an immutable multimap containing the given entries, in order.
113 * Returns an immutable multimap containing the given entries, in order.
142 * static final Multimap<String, Integer> STRING_TO_INTEGER_MULTIMAP
    [all...]
Multimaps.java 57 * Provides static methods acting on or generating a {@code Multimap}.
70 * Creates a new {@code Multimap} that uses the provided map and factory. It
71 * can generate a multimap based on arbitrary {@link Map} and
75 * multimap iteration order. They also specify the behavior of the
77 * multimap and its returned views. However, the multimap's {@code get}
81 * <p>The multimap is serializable if {@code map}, {@code factory}, the
82 * collections generated by {@code factory}, and the multimap contents are all
85 * <p>The multimap is not threadsafe when any concurrent operations update the
86 * multimap, even if {@code map} and the instances generated b
    [all...]
LinkedHashMultimap.java 38 * Implementation of {@code Multimap} that does not allow duplicate key-value
40 * which the data was added to the multimap.
44 * multimap. Similarly, {@code get}, {@code removeAll}, and {@code
48 * added to the multimap.
54 * then add the key back to the multimap, that key will come last in the key
57 * <p>The multimap does not store duplicate key-value pairs. Adding a new
60 * <p>Keys and values may be null. All optional multimap methods are supported,
64 * multimap. Concurrent read operations will work correctly. To allow concurrent
65 * update operations, wrap your multimap with a call to {@link
80 * key-value pairs were added to the multimap
    [all...]
ForwardingMultimap.java 29 * A multimap which forwards all its method calls to another multimap.
31 * the backing multimap as desired per the <a
39 implements Multimap<K, V> {
44 @Override protected abstract Multimap<K, V> delegate();
107 public boolean putAll(Multimap<? extends K, ? extends V> multimap) {
108 return delegate().putAll(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>()) );
  /ndk/tests/device/test-gnustl-full/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>()) );
  /ndk/tests/device/test-stlport/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>()) );
  /external/libcxx/test/containers/associative/multimap/multimap.cons/
iter_iter.pass.cpp 12 // class multimap
15 // multimap(InputIterator first, InputIterator last);
38 std::multimap<int, double> m(ar, ar+sizeof(ar)/sizeof(ar[0]));
66 std::multimap<int, double, std::less<int>, min_allocator<V>> m(ar, ar+sizeof(ar)/sizeof(ar[0]));
96 std::multimap<int, double, std::less<int>, A> m(ar, ar+sizeof(ar)/sizeof(ar[0]), a);
iter_iter_comp.pass.cpp 12 // class multimap
15 // multimap(InputIterator first, InputIterator last,
41 std::multimap<int, double, C> m(ar, ar+sizeof(ar)/sizeof(ar[0]), C(5));
71 std::multimap<int, double, C, min_allocator<V>> m(ar, ar+sizeof(ar)/sizeof(ar[0]), C(5));
iter_iter_comp_alloc.pass.cpp 12 // class multimap
15 // multimap(InputIterator first, InputIterator last,
43 std::multimap<int, double, C, A> m(ar, ar+sizeof(ar)/sizeof(ar[0]), C(5), A(7));
75 std::multimap<int, double, C, A> m(ar, ar+sizeof(ar)/sizeof(ar[0]), C(5), A());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.cons/
iter_iter.pass.cpp 12 // class multimap
15 // multimap(InputIterator first, InputIterator last);
38 std::multimap<int, double> m(ar, ar+sizeof(ar)/sizeof(ar[0]));
66 std::multimap<int, double, std::less<int>, min_allocator<V>> m(ar, ar+sizeof(ar)/sizeof(ar[0]));
96 std::multimap<int, double, std::less<int>, A> m(ar, ar+sizeof(ar)/sizeof(ar[0]), a);
iter_iter_comp.pass.cpp 12 // class multimap
15 // multimap(InputIterator first, InputIterator last,
41 std::multimap<int, double, C> m(ar, ar+sizeof(ar)/sizeof(ar[0]), C(5));
71 std::multimap<int, double, C, min_allocator<V>> m(ar, ar+sizeof(ar)/sizeof(ar[0]), C(5));
iter_iter_comp_alloc.pass.cpp 12 // class multimap
15 // multimap(InputIterator first, InputIterator last,
43 std::multimap<int, double, C, A> m(ar, ar+sizeof(ar)/sizeof(ar[0]), C(5), A(7));
75 std::multimap<int, double, C, A> m(ar, ar+sizeof(ar)/sizeof(ar[0]), C(5), A());
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_util.h 159 const std::multimap<std::string, std::string>& language_code_to_ids,
181 typedef std::multimap<std::string, std::string> LanguageCodeToIdsMap;
  /external/libcxx/test/containers/associative/multimap/multimap.modifiers/
insert_cv.pass.cpp 12 // class multimap
24 typedef std::multimap<int, double> M;
53 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
insert_iter_cv.pass.cpp 12 // class multimap
24 typedef std::multimap<int, double> M;
53 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
insert_iter_rv.pass.cpp 12 // class multimap
27 typedef std::multimap<int, MoveOnly> M;
57 typedef std::multimap<int, MoveOnly, std::less<int>, min_allocator<std::pair<const int, MoveOnly>>> M;
insert_rv.pass.cpp 12 // class multimap
27 typedef std::multimap<int, MoveOnly> M;
56 typedef std::multimap<int, MoveOnly, std::less<int>, min_allocator<std::pair<const int, MoveOnly>>> M;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.modifiers/
insert_cv.pass.cpp 12 // class multimap
24 typedef std::multimap<int, double> M;
53 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
insert_iter_cv.pass.cpp 12 // class multimap
24 typedef std::multimap<int, double> M;
53 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
insert_iter_rv.pass.cpp 12 // class multimap
27 typedef std::multimap<int, MoveOnly> M;
57 typedef std::multimap<int, MoveOnly, std::less<int>, min_allocator<std::pair<const int, MoveOnly>>> M;
insert_rv.pass.cpp 12 // class multimap
27 typedef std::multimap<int, MoveOnly> M;
56 typedef std::multimap<int, MoveOnly, std::less<int>, min_allocator<std::pair<const int, MoveOnly>>> M;

Completed in 443 milliseconds

1 2 3 4 5 6 78 91011>>