/external/libcxx/test/libcxx/extensions/hash_map/ |
const_iterator.fail.cpp | 10 #include <ext/hash_map> 14 __gnu_cxx::hash_map<int, int> m; 16 const __gnu_cxx::hash_map<int, int> &cm = m;
|
/external/libcxx/test/libcxx/containers/gnu_cxx/ |
hash_map.pass.cpp | 15 #include <ext/hash_map> 18 template class hash_map<int, int>; 22 typedef __gnu_cxx::hash_map<int, int> Map;
|
/external/clang/test/Modules/Inputs/submodules/ |
hash_map.h | 1 template<typename Key, typename Data> class hash_map { }; class
|
/external/clang/test/Modules/ |
submodules.cpp | 12 // expected-note@Inputs/submodules/hash_map.h:1{{previous}} 23 // hash_map still isn't available. 24 hash_map<int, float> ints_to_floats; // expected-error{{declaration of 'hash_map' must be imported from module 'std.hash_map' before it is required}} 26 @import std.hash_map; 28 hash_map<int, float> ints_to_floats2;
|
submodules-preprocess.cpp | 49 @import std.hash_map;
|
/external/libcxx/test/libcxx/extensions/hash/ |
specializations.fail.cpp | 11 #include <ext/hash_map>
|
specializations.pass.cpp | 13 #include <ext/hash_map>
|
/external/clang/test/SemaCXX/ |
PR11358.cpp | 23 class hash_map { class in namespace:test2 30 void MapTest(hash_map<KeyType, ValueType> map) { 31 for (hash_map<KeyType, ValueType>::const_iterator it = map.begin(); // expected-error{{missing 'typename'}}
|
/external/google-breakpad/src/common/ |
unordered.h | 32 // hash_map by defining BP_USE_HASH_SET. 38 #include <hash_map> 45 struct unordered_map : public hash_map<T, U, H> {};
|
/external/protobuf/src/google/protobuf/stubs/ |
hash.h | 33 // Deals with the fact that hash_map is not defined everywhere. 69 # include <ext/hash_map> 70 # define GOOGLE_PROTOBUF_HASH_MAP_CLASS hash_map 83 # include <backward/hash_map> 84 # define GOOGLE_PROTOBUF_HASH_MAP_CLASS hash_map 94 # include <hash_map> 95 # define GOOGLE_PROTOBUF_HASH_MAP_CLASS hash_map 101 // Apparently Microsoft decided to move hash_map *back* to the std namespace in 112 # include <hash_map> 113 # define GOOGLE_PROTOBUF_HASH_MAP_CLASS hash_map 215 class hash_map : public std::map<Key, Data, HashFcn, Alloc> { class in namespace:google::protobuf 219 hash_map(int a = 0, const HashFcn& b = HashFcn(), function in class:google::protobuf::hash_map [all...] |
/external/protobuf/python/google/protobuf/pyext/ |
descriptor_pool.h | 84 typedef hash_map<const Descriptor*, CMessageClass*> ClassesByMessageMap; 90 hash_map<const void*, PyObject*>* descriptor_options;
|
descriptor_pool.cc | 60 static hash_map<const DescriptorPool*, PyDescriptorPool*> descriptor_pool_map; 86 new hash_map<const void*, PyObject *>(); 161 for (hash_map<const void*, PyObject*>::iterator it = 582 hash_map<const DescriptorPool*, PyDescriptorPool*>::iterator it =
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
reactor_op_queue.hpp | 16 #include "asio/detail/hash_map.hpp" 41 typedef typename hash_map<key_type, mapped_type>::value_type value_type; 42 typedef typename hash_map<key_type, mapped_type>::iterator iterator; 157 hash_map<key_type, mapped_type> operations_;
|
hash_map.hpp | 2 // detail/hash_map.hpp 41 class hash_map class in namespace:asio::detail 55 hash_map() function in class:asio::detail::hash_map 63 ~hash_map()
|
/external/libchrome/ipc/ |
ipc_logging.h | 28 typedef base::hash_map<uint32_t, LogFunction > LogFunctionMap;
|
/external/libchrome/mojo/core/ |
handle_table.h | 76 using HandleMap = base::hash_map<MojoHandle, Entry>;
|
/external/libchrome/base/containers/ |
hash_tables.h | 24 // uses of BASE_HASH_NAMESPACE with base::hash_map do not interfere with 49 using hash_map = std::unordered_map<Key, T, Hash, Pred, Alloc>;
|
/external/clang/test/CodeGenCXX/ |
debug-info-use-after-free.cpp | 205 allocator < _Tp > >class hash_map { class in namespace:__gnu_cxx 228 __gnu_cxx::hash_map; 262 hash_map <
|
/art/libartbase/base/ |
hash_set_test.cc | 29 #include "hash_map.h" 272 HashMap<std::string, int, IsEmptyStringPair> hash_map; local 273 hash_map.insert(std::make_pair(std::string("abcd"), 123)); 274 hash_map.insert(std::make_pair(std::string("abcd"), 124)); 275 hash_map.insert(std::make_pair(std::string("bags"), 444)); 276 auto it = hash_map.find(std::string("abcd")); 278 hash_map.erase(it); 279 it = hash_map.find(std::string("abcd"));
|
/external/eigen/bench/ |
sparse_randomsetter.cpp | 6 #include <ext/hash_map> 89 dostuff<RandomSetter<EigenSparseMatrix,GnuHashMapTraits,Bits> >("gnu::hash_map", sm1); 99 // std::cout << "gnu::hash_map => \t" << t.value()-rtime
|
/external/libcxx/test/libcxx/ |
double_include.sh.cpp | 18 // Prevent <ext/hash_map> from generating deprecated warnings for this test. 168 #include <ext/hash_map>
|
min_max_macros.sh.cpp | 15 // Prevent <ext/hash_map> from generating deprecated warnings for this test. 279 #include <ext/hash_map>
|
/external/protobuf/src/google/protobuf/compiler/ |
command_line_interface.h | 194 typedef hash_map<string, GeneratorContextImpl*> GeneratorContextMap;
|
/external/protobuf/src/google/protobuf/ |
message.cc | 301 hash_map<const char*, RegistrationFunc*, 306 hash_map<const Descriptor*, const Message*> type_map_;
|
/external/protobuf/src/google/protobuf/util/internal/ |
protostream_objectsource.h | 231 static hash_map<string, TypeRenderer>* renderers_;
|