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

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/chrome/browser/autocomplete/
shortcuts_provider.h 41 typedef std::multimap<base::char16, base::string16> WordMap;
  /external/chromium_org/chrome/browser/extensions/api/location/
location_manager.h 65 typedef std::multimap<ExtensionId, LocationRequestPointer> LocationRequestMap;
  /external/chromium_org/chrome/browser/extensions/
extension_garbage_collector_chromeos.cc 72 std::multimap<std::string, base::FilePath> paths;
  /external/chromium_org/components/policy/core/browser/
policy_error_map.h 22 typedef std::multimap<std::string, base::string16> PolicyMapType;
  /external/chromium_org/extensions/browser/
verified_contents.h 96 typedef std::multimap<base::FilePath::StringType, std::string> RootHashes;
  /external/chromium_org/gpu/command_buffer/service/
mailbox_manager.h 69 typedef std::multimap<Texture*, TargetName> TextureToMailboxMap;
  /external/chromium_org/third_party/webrtc/modules/video_render/ios/
video_render_ios_gles20.h 81 std::multimap<int, int> z_order_to_channel_;
video_render_ios_gles20.mm 72 std::multimap<int, int>::iterator z_it = z_order_to_channel_.begin();
145 std::multimap<int, int>::iterator z_it = z_order_to_channel_.begin();
215 for (std::multimap<int, int>::reverse_iterator r_it =
  /external/guava/guava/src/com/google/common/collect/
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...]
  /external/libcxx/test/containers/associative/multimap/multimap.cons/
move_alloc.pass.cpp 12 // class multimap
14 // multimap(multimap&& m, const allocator_type& a);
32 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
71 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
110 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
150 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
move_assign.pass.cpp 12 // class multimap
14 // multimap& operator=(multimap&& m);
32 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
72 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
112 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
153 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
  /external/libcxx/test/containers/associative/multimap/multimap.ops/
find.pass.cpp 12 // class multimap
27 typedef std::multimap<int, double> M;
87 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
149 typedef std::multimap<int, double, std::less<>> M;
181 typedef std::multimap<PC, double, std::less<>> M;
  /external/lldb/include/lldb/Symbol/
TypeList.h 77 typedef std::multimap<lldb::user_id_t, lldb::TypeSP> collection;
  /external/oprofile/libpp/
locate_images.h 89 typedef std::multimap<std::string, std::string> images_t;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.cons/
move_alloc.pass.cpp 12 // class multimap
14 // multimap(multimap&& m, const allocator_type& a);
32 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
71 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
110 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
150 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
move_assign.pass.cpp 12 // class multimap
14 // multimap& operator=(multimap&& m);
32 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
72 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
112 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
153 typedef std::multimap<MoveOnly, MoveOnly, C, A> M;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.ops/
find.pass.cpp 12 // class multimap
27 typedef std::multimap<int, double> M;
87 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
149 typedef std::multimap<int, double, std::less<>> M;
181 typedef std::multimap<PC, double, std::less<>> M;
  /external/chromium_org/chrome/browser/drive/
drive_app_registry.cc 26 std::multimap<std::string, std::string>* map) {
33 const std::multimap<std::string, std::string>& map,
35 typedef std::multimap<std::string, std::string>::const_iterator iterator;
42 std::multimap<std::string, std::string>* map) {
43 typedef std::multimap<std::string, std::string>::iterator iterator;
  /external/libcxx/test/containers/associative/multimap/multimap.special/
non_member_swap.pass.cpp 12 // class multimap
16 // swap(multimap<Key, T, Compare, Allocator>& x, multimap<Key, T, Compare, Allocator>& y);
28 typedef std::multimap<int, double> M;
116 typedef std::multimap<int, double, C, A> M;
150 typedef std::multimap<int, double, C, A> M;
184 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
272 typedef std::multimap<int, double, C, A> M;
member_swap.pass.cpp 12 // class multimap
14 // void swap(multimap& m);
25 typedef std::multimap<int, double> M;
113 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.special/
non_member_swap.pass.cpp 12 // class multimap
16 // swap(multimap<Key, T, Compare, Allocator>& x, multimap<Key, T, Compare, Allocator>& y);
28 typedef std::multimap<int, double> M;
116 typedef std::multimap<int, double, C, A> M;
150 typedef std::multimap<int, double, C, A> M;
184 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
272 typedef std::multimap<int, double, C, A> M;
member_swap.pass.cpp 12 // class multimap
14 // void swap(multimap& m);
25 typedef std::multimap<int, double> M;
113 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
  /external/libcxx/test/containers/associative/multimap/multimap.modifiers/
insert_iter_iter.pass.cpp 12 // class multimap
26 typedef std::multimap<int, double> M;
64 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.modifiers/
insert_iter_iter.pass.cpp 12 // class multimap
26 typedef std::multimap<int, double> M;
64 typedef std::multimap<int, double, std::less<int>, min_allocator<std::pair<const int, double>>> M;
  /external/chromium_org/chrome/browser/apps/
ephemeral_app_service.h 61 typedef std::multimap<base::Time, std::string> LaunchTimeAppMap;

Completed in 1511 milliseconds

1 2 3 4 5 6 7 891011>>