/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/ |
version.pass.cpp | 10 // <unordered_map> 12 #include <unordered_map>
|
compare.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 19 #include <unordered_map> 38 std::unordered_map<Key, int>::iterator it = 39 std::unordered_map<Key, int>().find(Key(0)); 40 std::pair<std::unordered_map<Key, int>::iterator, bool> result = 41 std::unordered_map<Key, int>().insert(std::make_pair(Key(0), 0));
|
max_size.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 18 #include <unordered_map> 26 std::unordered_map<int, int> u; 31 std::unordered_map<int, int, std::hash<int>, std::equal_to<int>,
|
max_bucket_count.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 18 #include <unordered_map> 27 typedef std::unordered_map<int, std::string> C; 35 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
|
bucket_count.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 18 #include <unordered_map> 27 typedef std::unordered_map<int, std::string> C; 34 typedef std::unordered_map<int, std::string> C; 53 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>, 61 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
|
max_load_factor.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 19 #include <unordered_map> 28 typedef std::unordered_map<int, std::string> C; 34 typedef std::unordered_map<int, std::string> C; 43 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>, 50 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
|
load_factor.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 18 #include <unordered_map> 28 typedef std::unordered_map<int, std::string> C; 45 typedef std::unordered_map<int, std::string> C; 52 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>, 70 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
|
bucket.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 18 #include <unordered_map> 27 typedef std::unordered_map<int, std::string> C; 46 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
|
bucket_size.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>,
|
count.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 18 #include <unordered_map> 27 typedef std::unordered_map<int, std::string> C; 46 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
|
find_const.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 18 #include <unordered_map> 27 typedef std::unordered_map<int, std::string> C; 49 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
|
find_non_const.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 18 #include <unordered_map> 27 typedef std::unordered_map<int, std::string> C; 49 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.elem/ |
index_tuple.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 20 #include <unordered_map> 38 unordered_map<tuple<int,int>, size_t, my_hash> m;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.cnstr/ |
default_noexcept.pass.cpp | 10 // <unordered_map> 12 // unordered_map() 20 #include <unordered_map> 47 typedef std::unordered_map<MoveOnly, MoveOnly> C; 51 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, 56 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, 61 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; 65 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
|
dtor_noexcept.pass.cpp | 10 // <unordered_map> 12 // ~unordered_map() // implied noexcept; 14 #include <unordered_map> 44 typedef std::unordered_map<MoveOnly, MoveOnly> C; 48 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, 53 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, 58 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; 62 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
|
move_assign_noexcept.pass.cpp | 10 // <unordered_map> 12 // unordered_map& operator=(unordered_map&& c) 20 #include <unordered_map> 46 typedef std::unordered_map<MoveOnly, MoveOnly> C; 50 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, 55 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, 60 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; 64 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
|
move_noexcept.pass.cpp | 10 // <unordered_map> 12 // unordered_map(unordered_map&&) 18 #include <unordered_map> 43 typedef std::unordered_map<MoveOnly, MoveOnly> C; 47 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, 52 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, 57 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; 61 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.swap/ |
swap_noexcept.pass.cpp | 10 // <unordered_map> 12 // void swap(unordered_map& c) 18 #include <unordered_map> 45 typedef std::unordered_map<MoveOnly, MoveOnly> C; 50 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, 56 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>, 62 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C; 67 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unorder.map.modifiers/ |
clear.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 18 #include <unordered_map> 27 typedef std::unordered_map<int, std::string> C; 44 typedef std::unordered_map<int, std::string, 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>,
|
insert_init.pass.cpp | 10 // <unordered_map> 14 // class unordered_map 18 #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_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>,
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/ |
regexp_cache.h | 38 # include <tr1/unordered_map> 54 typedef std::tr1::unordered_map<string, const RegExp*> CacheImpl;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/ |
max_size.pass.cpp | 10 // <unordered_map> 18 #include <unordered_map>
|
/external/protobuf/android/ |
config.h | 5 #define HASH_MAP_CLASS unordered_map 8 #define HASH_MAP_H <tr1/unordered_map> 30 * TODO: Figure out how to use stlport unordered_map and set.
|