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

12 3

  /external/guava/src/com/google/common/collect/
ImmutableListMultimap.java 35 * a <i>view</i> of a separate multimap which can still change, an instance of
39 * you easily make a "defensive copy" of a multimap provided to your class by
54 /** Returns the empty multimap. */
55 // Casting is safe because the multimap will never hold any elements.
64 * Returns an immutable multimap containing a single entry.
74 * Returns an immutable multimap containing the given entries, in order.
85 * Returns an immutable multimap containing the given entries, in order.
98 * Returns an immutable multimap containing the given entries, in order.
112 * Returns an immutable multimap containing the given entries, in order.
141 * static final Multimap<String, Integer> STRING_TO_INTEGER_MULTIMAP
    [all...]
ImmutableSetMultimap.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.
67 * Returns an immutable multimap containing a single entry.
76 * Returns an immutable multimap containing the given entries, in order.
88 * Returns an immutable multimap containing the given entries, in order.
102 * Returns an immutable multimap containing the given entries, in order.
117 * Returns an immutable multimap containing the given entries, in order.
142 * Multimap for {@link ImmutableSetMultimap.Builder} that maintains ke
    [all...]
LinkedHashMultimap.java 36 * Implementation of {@code Multimap} that does not allow duplicate key-value
38 * which the data was added to the multimap.
42 * multimap. Similarly, {@code get}, {@code removeAll}, and {@code
46 * added to the multimap.
52 * then add the key back to the multimap, that key will come last in the key
55 * <p>The multimap does not store duplicate key-value pairs. Adding a new
58 * <p>Keys and values may be null. All optional multimap methods are supported,
62 * multimap. Concurrent read operations will work correctly. To allow concurrent
63 * update operations, wrap your multimap with a call to {@link
78 * 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
40 implements Multimap<K, V> {
42 @Override protected abstract Multimap<K, V> delegate();
92 public boolean putAll(Multimap<? extends K, ? extends V> multimap) {
93 return delegate().putAll(multimap);
Multimap.java 30 * but different values, the multimap contains mappings from the key to both
35 * multimap. If the multimap is modifiable, updating it can change the contents
36 * of those collections, and updating the collections will change the multimap.
38 * that are independent of subsequent multimap changes.
40 * <p>Depending on the implementation, a multimap may or may not allow duplicate
41 * key-value pairs. In other words, the multimap contents after adding the same
43 * duplicates, the multimap will contain two mappings, and {@code get} will
45 * supporting duplicates, the multimap will contain a single mapping from the
49 * <p>All methods that alter the multimap are optional, and the views returne
    [all...]
Multimaps.java 48 * Provides static methods acting on or generating a {@code Multimap}.
60 * Creates a new {@code Multimap} that uses the provided map and factory. It
61 * can generate a multimap based on arbitrary {@link Map} and
65 * multimap iteration order. They also specify the behavior of the
67 * multimap and its returned views. However, the multimap's {@code get}
71 * <p>The multimap is serializable if {@code map}, {@code factory}, the
72 * collections generated by {@code factory}, and the multimap contents are all
75 * <p>The multimap is not threadsafe when any concurrent operations update the
76 * multimap, even if {@code map} and the instances generated b
    [all...]
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...]
  /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/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>()) );
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/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>()) );
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/collada/src/modules/STLDatabase/
daeSTLDatabase.cpp 266 multimap<string, daeElement* >::iterator iter = range.first;
310 pair< multimap<string, daeElement* >::iterator, multimap<string, daeElement* >::iterator> range;
312 multimap<string, daeElement* >::iterator iter = range.first;
401 pair< multimap< string, daeElement* >::iterator, multimap< string, daeElement* >::iterator > range;
403 multimap< string, daeElement* >::iterator i = range.first;
530 pair< multimap< string, daeElement* >::iterator, multimap< string, daeElement* >::iterator> range;
532 multimap< string, daeElement* >::iterator i = range.first
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
core_options_handler.h 65 typedef std::multimap<std::string, std::wstring> PreferenceCallbackMap;
  /external/llvm/utils/TableGen/
ClangASTNodesEmitter.h 30 typedef std::multimap<Record*, Record*> ChildMap;
  /external/oprofile/libpp/
locate_images.h 89 typedef std::multimap<std::string, std::string> images_t;
  /external/chromium/chrome/browser/ui/webui/chromeos/
imageburner_ui.h 47 typedef std::multimap<GURL, Listener*> ListenerMap;
80 std::multimap<GURL, Listener*> listeners_;
  /external/chromium/chrome/browser/extensions/
extension_webnavigation_api.h 63 typedef std::multimap<const TabContents*, int64> TabContentsToFrameIdMap;
  /external/oprofile/libutil++/
cverb.cpp 51 // We use a multimap because user can create multiple verbose object with
54 typedef multimap<string, verbose *> recorder_t;
bfd_support.cpp 456 multimap<string, bfd_section *> image_sections;
483 multimap<string, bfd_section *>::iterator it;
484 pair<multimap<string, bfd_section *>::iterator,
485 multimap<string, bfd_section *>::iterator> range;
  /external/llvm/lib/CodeGen/
AggressiveAntiDepBreaker.cpp 72 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference> *RegRefs)
323 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
358 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
435 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
521 std::pair<std::multimap<unsigned,
523 std::multimap<unsigned,
526 for (std::multimap<unsigned,
552 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
728 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>&
    [all...]
  /development/tools/emulator/opengl/host/libs/Translator/include/GLcommon/
objectNameManager.h 213 typedef std::multimap<void *, ShareGroupPtr> ShareGroupsMap;
  /external/chromium/chrome/browser/chromeos/input_method/
input_method_util.h 195 const std::multimap<std::string, std::string>& language_code_to_ids,
  /external/stlport/test/eh/
test_map.cpp 22 #include <multimap.h>

Completed in 1354 milliseconds

12 3