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

1234567891011>>

/external/clang/test/Modules/Inputs/submodules/
H A Dhash_map.h1 template<typename Key, typename Data> class hash_map { }; class
/external/chromium_org/gpu/command_buffer/client/
H A Dhash_tables.h12 struct hash_map : public std::tr1::unordered_map<key, value> { struct in namespace:gpu
19 struct hash_map : public base::hash_map<key, value> { struct in namespace:gpu
/external/clang/test/Modules/
H A Dsubmodules.cpp22 // hash_map still isn't available.
23 hash_map<int, float> ints_to_floats; // expected-error{{unknown type name 'hash_map'}} \
26 @import std.hash_map;
28 hash_map<int, float> ints_to_floats2;
/external/chromium_org/third_party/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/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/chromium/android/ext/
H A Dfake_hash.h4 #include <hash_map>
8 using std::hash_map;
/external/chromium_org/third_party/protobuf/
H A Dconfig.h5 #define HASH_MAP_CLASS hash_map
7 /* the location of <hash_map> */
9 #define HASH_MAP_H <hash_map>
11 #define HASH_MAP_H <ext/hash_map>
14 /* the namespace of hash_map/hash_set */
40 /* 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/chromium_org/chrome/browser/
H A Dsite_details.h14 typedef base::hash_map<int32, std::set<GURL> > BrowsingInstanceSiteMap;
30 typedef base::hash_map<content::BrowserContext*, SiteData>
H A Dcommand_updater.h78 typedef base::hash_map<int, Command*> CommandMap;
/external/oprofile/module/
H A Dop_dname.c30 static struct op_hash_index * hash_map; variable in typeref:struct:op_hash_index
47 hash_map = rvmalloc(PAGE_ALIGN(OP_HASH_MAP_SIZE));
48 if (!hash_map)
52 hash_map[i].name = 0;
53 hash_map[i].parent = -1;
56 op_pool_start = (char *)(hash_map + OP_HASH_MAP_NR);
62 hash_map[0].name = alloc_in_pool("/", 1);
63 hash_map[0].parent = 0;
71 rvfree(hash_map, PAGE_ALIGN(OP_HASH_MAP_SIZE));
100 pos = (ulong)hash_map;
[all...]
/external/chromium/base/
H A Dhash_tables.h8 // of hash_map. Allows all platforms to use |base::hash_map| and
11 // base::hash_map<int> my_map;
30 #include <hash_map>
33 using stdext::hash_map;
37 // This is a hack to disable the gcc 4.4 warning about hash_map and hash_set
45 #include <ext/hash_map>
55 using __gnu_cxx::hash_map;
/external/chromium_org/content/browser/devtools/
H A Ddevtools_netlog_observer.h56 typedef base::hash_map<uint32, scoped_refptr<ResourceInfo> > RequestToInfoMap;
57 typedef base::hash_map<uint32, int> RequestToEncodedDataLengthMap;
58 typedef base::hash_map<uint32, uint32> HTTPStreamJobToSocketMap;
59 typedef base::hash_map<uint32, uint32> SocketToRequestMap;
/external/chromium_org/chrome/renderer/safe_browsing/
H A Dfeatures.h53 const base::hash_map<std::string, double>& features() const {
66 base::hash_map<std::string, double> features_;
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Depsnormalize.h23 #include <ext/hash_map>
24 using __gnu_cxx::hash_map;
/external/chromium/chrome/browser/debugger/
H A Ddevtools_netlog_observer.h75 typedef base::hash_map<uint32, scoped_refptr<ResourceInfo> > RequestToInfoMap;
76 typedef base::hash_map<uint32, int> RequestToEncodedDataLengthMap;
77 typedef base::hash_map<uint32, uint32> HTTPStreamJobToSocketMap;
78 typedef base::hash_map<uint32, uint32> SocketToRequestMap;
/external/chromium_org/content/common/
H A Dcontent_ipc_logging.cc24 base::LazyInstance<base::hash_map<uint32, LogFunction> >::Leaky
/external/chromium_org/base/containers/
H A Dsmall_map_unittest.cc20 SmallMap<hash_map<int, int> > m;
38 SmallMap<hash_map<int, int> >::iterator iter(m.begin());
69 const SmallMap<hash_map<int, int> >& ref = m;
75 SmallMap<hash_map<int, int> > m;
80 SmallMap<hash_map<int, int> >::iterator iter(m.begin());
81 SmallMap<hash_map<int, int> >::iterator last(iter++);
87 SmallMap<hash_map<int, int> >::const_iterator iter(m.begin());
88 SmallMap<hash_map<int, int> >::const_iterator last(iter++);
96 SmallMap<hash_map<int, int> > src;
99 SmallMap<hash_map<in
[all...]
/external/chromium_org/third_party/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/chromium_org/third_party/cld/base/
H A Dstl_decl_msvc.h83 class hash_map;
95 using msvchash::hash_map;
101 #define hash_map map
/external/chromium/chrome/browser/download/
H A Dsave_file_manager.h227 typedef base::hash_map<int, SaveFile*> SaveFileMap;
234 typedef base::hash_map<int, SavePackage*> SavePackageMap;
247 typedef base::hash_map<std::string, SavePackage*> StartingRequestsMap;
248 typedef base::hash_map<int, StartingRequestsMap> TabToStartingRequestsMap;
/external/chromium/chrome/browser/
H A Dresources_util.cc15 // A wrapper class that holds a hash_map between resource strings and resource
17 // thread safety in initializing the hash_map for us.
20 typedef base::hash_map<std::string, int> StringIntMap;
/external/chromium/chrome/browser/ui/gtk/
H A Daccelerators_gtk.h40 base::hash_map<int, ui::AcceleratorGtk> primary_accelerators_;
/external/chromium/net/websockets/
H A Dwebsocket_throttle.h51 typedef base::hash_map<std::string, ConnectingQueue*> ConnectingAddressMap;
/external/chromium_org/cc/animation/
H A Danimation_registrar.h19 typedef base::hash_map<int, LayerAnimationController*> AnimationControllerMap;

Completed in 1836 milliseconds

1234567891011>>