/external/clang/test/Modules/Inputs/submodules/ |
H A D | hash_map.h | 1 template<typename Key, typename Data> class hash_map { }; class
|
/external/chromium_org/gpu/command_buffer/client/ |
H A D | hash_tables.h | 12 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 D | submodules.cpp | 22 // 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 D | config.h | 4 /* 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 D | config.h | 4 /* 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 D | fake_hash.h | 4 #include <hash_map> 8 using std::hash_map;
|
/external/chromium_org/third_party/protobuf/ |
H A D | config.h | 5 #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 D | 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/chromium_org/chrome/browser/ |
H A D | site_details.h | 14 typedef base::hash_map<int32, std::set<GURL> > BrowsingInstanceSiteMap; 30 typedef base::hash_map<content::BrowserContext*, SiteData>
|
H A D | command_updater.h | 78 typedef base::hash_map<int, Command*> CommandMap;
|
/external/oprofile/module/ |
H A D | op_dname.c | 30 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 D | hash_tables.h | 8 // 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 D | devtools_netlog_observer.h | 56 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 D | features.h | 53 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 D | epsnormalize.h | 23 #include <ext/hash_map> 24 using __gnu_cxx::hash_map;
|
/external/chromium/chrome/browser/debugger/ |
H A D | devtools_netlog_observer.h | 75 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 D | content_ipc_logging.cc | 24 base::LazyInstance<base::hash_map<uint32, LogFunction> >::Leaky
|
/external/chromium_org/base/containers/ |
H A D | small_map_unittest.cc | 20 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 D | hash.h | 33 // 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 D | stl_decl_msvc.h | 83 class hash_map; 95 using msvchash::hash_map; 101 #define hash_map map
|
/external/chromium/chrome/browser/download/ |
H A D | save_file_manager.h | 227 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 D | resources_util.cc | 15 // 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 D | accelerators_gtk.h | 40 base::hash_map<int, ui::AcceleratorGtk> primary_accelerators_;
|
/external/chromium/net/websockets/ |
H A D | websocket_throttle.h | 51 typedef base::hash_map<std::string, ConnectingQueue*> ConnectingAddressMap;
|
/external/chromium_org/cc/animation/ |
H A D | animation_registrar.h | 19 typedef base::hash_map<int, LayerAnimationController*> AnimationControllerMap;
|