HomeSort by relevance Sort by last modified time
    Searched defs:hash_map (Results 1 - 7 of 7) sorted by null

  /external/clang/test/Modules/Inputs/submodules/
hash_map.h 1 template<typename Key, typename Data> class hash_map { }; class
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
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/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'}}
  /art/runtime/base/
hash_set_test.cc 25 #include "hash_map.h"
212 HashMap<std::string, int, IsEmptyStringPair> hash_map; local
213 hash_map.Insert(std::make_pair(std::string("abcd"), 123));
214 hash_map.Insert(std::make_pair(std::string("abcd"), 124));
215 hash_map.Insert(std::make_pair(std::string("bags"), 444));
216 auto it = hash_map.Find(std::string("abcd"));
218 hash_map.Erase(it);
219 it = hash_map.Find(std::string("abcd"));
  /external/oprofile/module/
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/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 <
  /external/chromium_org/v8/src/
hydrogen.cc 1605 HValue* hash_map = Add<HLoadRoot>(Heap::kHashTableMapRootIndex); local
    [all...]

Completed in 207 milliseconds