HomeSort by relevance Sort by last modified time
    Searched full:unordered_map (Results 151 - 175 of 686) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
insert_range.pass.cpp 10 // <unordered_map>
14 // class unordered_map
19 #include <unordered_map>
29 typedef std::unordered_map<int, std::string> C;
50 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
insert_rvalue.pass.cpp 10 // <unordered_map>
14 // class unordered_map
20 #include <unordered_map>
29 typedef std::unordered_map<double, int> C;
59 typedef std::unordered_map<MoveOnly, MoveOnly> C;
90 typedef std::unordered_map<double, int, std::hash<double>, std::equal_to<double>,
121 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, std::equal_to<MoveOnly>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/
equal_range_const.pass.cpp 10 // <unordered_map>
14 // class unordered_map
18 #include <unordered_map>
27 typedef std::unordered_map<int, std::string> C;
51 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
equal_range_non_const.pass.cpp 10 // <unordered_map>
14 // class unordered_map
18 #include <unordered_map>
27 typedef std::unordered_map<int, std::string> C;
51 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
rehash.pass.cpp 10 // <unordered_map>
14 // class unordered_map
18 #include <unordered_map>
37 typedef std::unordered_map<int, std::string> C;
64 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
reserve.pass.cpp 10 // <unordered_map>
14 // class unordered_map
18 #include <unordered_map>
37 typedef std::unordered_map<int, std::string> C;
64 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unorder.map.modifiers/
emplace.pass.cpp 10 // <unordered_map>
14 // class unordered_map
19 #include <unordered_map>
29 typedef std::unordered_map<int, Emplaceable> C;
54 typedef std::unordered_map<int, Emplaceable, std::hash<int>, std::equal_to<int>,
erase_const_iter.pass.cpp 10 // <unordered_map>
14 // class unordered_map
18 #include <unordered_map>
27 typedef std::unordered_map<int, std::string> C;
48 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
erase_range.pass.cpp 10 // <unordered_map>
14 // class unordered_map
18 #include <unordered_map>
27 typedef std::unordered_map<int, std::string> C;
63 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
insert_const_lvalue.pass.cpp 10 // <unordered_map>
14 // class unordered_map
18 #include <unordered_map>
26 typedef std::unordered_map<double, int> C;
56 typedef std::unordered_map<double, int, std::hash<double>, std::equal_to<double>,
insert_range.pass.cpp 10 // <unordered_map>
14 // class unordered_map
19 #include <unordered_map>
29 typedef std::unordered_map<int, std::string> C;
50 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
insert_rvalue.pass.cpp 10 // <unordered_map>
14 // class unordered_map
20 #include <unordered_map>
29 typedef std::unordered_map<double, int> C;
59 typedef std::unordered_map<MoveOnly, MoveOnly> C;
90 typedef std::unordered_map<double, int, std::hash<double>, std::equal_to<double>,
121 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, std::equal_to<MoveOnly>,
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.cnstr/
copy_alloc.pass.cpp 10 // <unordered_map>
14 // class unordered_map
16 // unordered_map(const unordered_map& u, const allocator_type& a);
18 #include <unordered_map>
31 typedef std::unordered_map<int, std::string,
71 typedef std::unordered_map<int, std::string,
assign_copy.pass.cpp 10 // <unordered_map>
14 // class unordered_map
16 // unordered_map& operator=(const unordered_map& u);
18 #include <unordered_map>
32 typedef std::unordered_map<int, std::string,
76 typedef std::unordered_map<int, std::string> C;
95 typedef std::unordered_map<int, std::string,
141 typedef std::unordered_map<int, std::string,
assign_move.pass.cpp 10 // <unordered_map>
14 // class unordered_map
16 // unordered_map& operator=(unordered_map&& u);
18 #include <unordered_map>
33 typedef std::unordered_map<int, std::string,
78 typedef std::unordered_map<int, std::string,
124 typedef std::unordered_map<int, std::string,
171 typedef std::unordered_map<int, std::string,
218 std::unordered_map<int, int> s1 = {{1, 1}, {2, 2}, {3, 3}}
    [all...]
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.elem/
at.pass.cpp 10 // <unordered_map>
14 // class unordered_map
19 #include <unordered_map>
29 typedef std::unordered_map<int, std::string> C;
55 typedef std::unordered_map<int, std::string> C;
81 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
108 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.cnstr/
copy_alloc.pass.cpp 10 // <unordered_map>
14 // class unordered_map
16 // unordered_map(const unordered_map& u, const allocator_type& a);
18 #include <unordered_map>
31 typedef std::unordered_map<int, std::string,
71 typedef std::unordered_map<int, std::string,
assign_copy.pass.cpp 10 // <unordered_map>
14 // class unordered_map
16 // unordered_map& operator=(const unordered_map& u);
18 #include <unordered_map>
32 typedef std::unordered_map<int, std::string,
76 typedef std::unordered_map<int, std::string> C;
95 typedef std::unordered_map<int, std::string,
141 typedef std::unordered_map<int, std::string,
assign_move.pass.cpp 10 // <unordered_map>
14 // class unordered_map
16 // unordered_map& operator=(unordered_map&& u);
18 #include <unordered_map>
33 typedef std::unordered_map<int, std::string,
78 typedef std::unordered_map<int, std::string,
124 typedef std::unordered_map<int, std::string,
171 typedef std::unordered_map<int, std::string,
218 std::unordered_map<int, int> s1 = {{1, 1}, {2, 2}, {3, 3}}
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.elem/
at.pass.cpp 10 // <unordered_map>
14 // class unordered_map
19 #include <unordered_map>
29 typedef std::unordered_map<int, std::string> C;
55 typedef std::unordered_map<int, std::string> C;
81 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
108 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
pt_node_writer.h 20 #include <unordered_map>
34 typedef std::unordered_map<int, int> PtNodeArrayPositionRelocationMap;
35 typedef std::unordered_map<int, int> PtNodePositionRelocationMap;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/backward/
backward_warning.h 49 <unordered_map>, unordered_map <ext/hash_map>, hash_map
50 <unordered_map>, unordered_multimap <ext/hash_map>, hash_multimap
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/backward/
backward_warning.h 49 <unordered_map>, unordered_map <ext/hash_map>, hash_map
50 <unordered_map>, unordered_multimap <ext/hash_map>, hash_multimap
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/backward/
backward_warning.h 49 <unordered_map>, unordered_map <ext/hash_map>, hash_map
50 <unordered_map>, unordered_multimap <ext/hash_map>, hash_multimap
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/
backward_warning.h 49 <unordered_map>, unordered_map <ext/hash_map>, hash_map
50 <unordered_map>, unordered_multimap <ext/hash_map>, hash_multimap

Completed in 746 milliseconds

1 2 3 4 5 67 8 91011>>