Searched refs:hash_map (Results 1 - 25 of 44) sorted by relevance

12

/external/libcxx/test/std/extensions/hash_map/
H A Dconst_iterator.fail.cpp10 #include <ext/hash_map>
14 __gnu_cxx::hash_map<int, int> m;
16 const __gnu_cxx::hash_map<int, int> &cm = m;
/external/clang/test/Modules/Inputs/submodules/
H A Dhash_map.h1 template<typename Key, typename Data> class hash_map { }; class
/external/clang/test/Modules/
H A Dsubmodules.cpp12 // 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;
H A Dsubmodules-preprocess.cpp49 @import std.hash_map;
/external/libcxx/test/std/extensions/hash/
H A Dspecializations.fail.cpp11 #include <ext/hash_map>
H A Dspecializations.pass.cpp13 #include <ext/hash_map>
/external/protobuf/vsprojects/
H A Dconfig.h4 /* the location of <hash_map> */
5 #define HASH_MAP_H <hash_map>
7 /* the namespace of hash_map/hash_set */
8 // Apparently Microsoft decided to move hash_map *back* to the std namespace
21 /* define if the compiler has hash_map */
/external/clang/test/SemaCXX/
H A DPR11358.cpp23 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/
H A Dunordered.h32 // 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/
H A Dhash.h33 // Deals with the fact that hash_map is not defined everywhere.
56 // This system doesn't have hash_map or hash_set. Emulate them using map and
92 class hash_map : public std::map<Key, Data, HashFcn> { class in namespace:google::protobuf
94 hash_map(int = 0) {} function in class:google::protobuf::hash_map
128 class hash_map : public HASH_NAMESPACE::hash_map<
131 hash_map(int = 0) {}
172 class hash_map : public HASH_NAMESPACE::HASH_MAP_CLASS<
175 hash_map(int = 0) {}
/external/parameter-framework/asio/include/asio/detail/
H A Dreactor_op_queue.hpp16 #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_;
H A Dhash_map.hpp2 // 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/parameter-framework/asio-1.10.6/include/asio/detail/
H A Dreactor_op_queue.hpp16 #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_;
H A Dhash_map.hpp2 // 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/base/trace_event/
H A Dtrace_event_memory_overhead.h63 using map_type = SmallMap<hash_map<const char*, ObjectCountAndSize>, 16>;
H A Dprocess_memory_dump.h55 SmallMap<hash_map<std::string, MemoryAllocatorDump*>>;
58 SmallMap<hash_map<std::string, scoped_refptr<TracedValue>>>;
H A Dtrace_log.h444 base::hash_map<int, std::string> process_labels_;
446 base::hash_map<int, int> thread_sort_indices_;
447 base::hash_map<int, std::string> thread_names_;
450 base::hash_map<int, std::stack<TimeTicks>> thread_event_start_times_;
451 base::hash_map<std::string, int> thread_colors_;
/external/clang/test/CodeGenCXX/
H A Ddebug-info-use-after-free.cpp205 allocator < _Tp > >class hash_map { class in namespace:__gnu_cxx
228 __gnu_cxx::hash_map;
262 hash_map <
/external/libchrome/base/task/
H A Dcancelable_task_tracker.cc24 using base::hash_map;
148 hash_map<TaskId, CancellationFlag*>::const_iterator it = task_flags_.find(id);
164 for (hash_map<TaskId, CancellationFlag*>::const_iterator it =
H A Dcancelable_task_tracker.h130 base::hash_map<TaskId, base::CancellationFlag*> task_flags_;
/external/libcxx/test/libcxx/
H A Ddouble_include.sh.cpp60 #include <ext/hash_map>
/external/libchrome/base/containers/
H A Dhash_tables.h8 // of hash_map. Allows all platforms to use |base::hash_map| and
11 // base::hash_map<int> my_map;
42 // This is a hack to disable the gcc 4.4 warning about hash_map and hash_set
50 #include <ext/hash_map>
138 using hash_map = std::unordered_map<Key, T, Hash, Pred, Alloc>;
166 using hash_map = BASE_HASH_IMPL_NAMESPACE::hash_map<Key, T, Hash, Pred, Alloc>;
H A Dscoped_ptr_hash_map.h21 // This type acts like a hash_map<K, scoped_ptr<V, D> >, based on top of
22 // base::hash_map. The ScopedPtrHashMap has ownership of all values in the data
26 typedef base::hash_map<Key, typename ScopedPtr::element_type*> Container;
116 // Returns the element in the hash_map that matches the given key.
/external/eigen/bench/
H A Dsparse_randomsetter.cpp6 #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/protobuf/src/google/protobuf/
H A Dmessage.cc248 hash_map<const char*, RegistrationFunc*,
253 hash_map<const Descriptor*, const Message*> type_map_;

Completed in 725 milliseconds

12