/external/protobuf/m4/ |
D | stl_hash.m4 | 2 # unordered_map/hash_map (we prefer the first form), and what 3 # namespace unordered/hash_map lives in within that include file. We 7 # hash_map) is in. 12 AC_MSG_CHECKING(the location of hash_map) 38 # Now try hash_map 39 for location in ext/hash_map hash_map; do 43 [${namespace}::hash_map<int, int> t], 46 ac_cv_cxx_hash_map_class="hash_map";]) 53 AC_DEFINE(HAVE_HASH_MAP, 1, [define if the compiler has hash_map]) 56 [the location of <unordered_map> or <hash_map>]) [all …]
|
/external/llvm-project/libcxx/include/ext/ |
D | hash_map | 2 //===-------------------------- hash_map ----------------------------------===// 15 hash_map synopsis 22 class hash_map 42 hash_map(); 43 explicit hash_map(size_type n, const hasher& hf = hasher(), 47 hash_map(InputIterator f, InputIterator l); 49 hash_map(InputIterator f, InputIterator l, 53 hash_map(const hash_map&); 54 ~hash_map(); 55 hash_map& operator=(const hash_map&); [all …]
|
/external/libcxx/include/ext/ |
D | hash_map | 2 //===-------------------------- hash_map ----------------------------------===// 16 hash_map synopsis 23 class hash_map 43 explicit hash_map(size_type n = 193, const hasher& hf = hasher(), 47 hash_map(InputIterator f, InputIterator l, 51 hash_map(const hash_map&); 52 ~hash_map(); 53 hash_map& operator=(const hash_map&); 75 void swap(hash_map&); 97 void swap(hash_map<Key, T, Hash, Pred, Alloc>& x, [all …]
|
/external/llvm-project/clang/test/Modules/ |
D | submodules.cpp | 24 hash_map<int, float> ints_to_floats; // expected-error{{declaration of 'hash_map' must be imported … 26 @import std.hash_map; 28 hash_map<int, float> ints_to_floats2;
|
/external/clang/test/Modules/ |
D | submodules.cpp | 24 hash_map<int, float> ints_to_floats; // expected-error{{declaration of 'hash_map' must be imported … 26 @import std.hash_map; 28 hash_map<int, float> ints_to_floats2;
|
/external/clang/test/SemaCXX/ |
D | PR11358.cpp | 23 class hash_map { class 30 void MapTest(hash_map<KeyType, ValueType> map) { in MapTest() 31 …for (hash_map<KeyType, ValueType>::const_iterator it = map.begin(); // expected-error{{missing 'ty… in MapTest()
|
/external/llvm-project/clang/test/SemaCXX/ |
D | PR11358.cpp | 23 class hash_map { class 30 void MapTest(hash_map<KeyType, ValueType> map) { in MapTest() 31 …for (hash_map<KeyType, ValueType>::const_iterator it = map.begin(); // expected-error{{missing 'ty… in MapTest()
|
/external/llvm-project/llvm/test/CodeGen/BPF/BTF/ |
D | map-def-3.ll | 8 ; const struct key_type __attribute__((section(".maps"))) hash_map; 14 @hash_map = dso_local local_unnamed_addr constant %struct.key_type zeroinitializer, section ".maps"… 37 ; CHECK-NEXT: .long hash_map 43 ; CHECK: .ascii "hash_map" # string offset=17 52 !1 = distinct !DIGlobalVariable(name: "hash_map", scope: !2, file: !3, line: 4, type: !6, isLocal: …
|
D | map-def-2.ll | 12 ; __map_type __attribute__((section(".maps"))) hash_map; 19 @hash_map = dso_local local_unnamed_addr global %struct.map_type zeroinitializer, section ".maps", … 54 ; CHECK-NEXT: .long hash_map 64 ; CHECK: .ascii "hash_map" # string offset=51 72 !1 = distinct !DIGlobalVariable(name: "hash_map", scope: !2, file: !3, line: 8, type: !6, isLocal: …
|
D | map-def.ll | 13 ; struct map_type __attribute__((section(".maps"))) hash_map; 20 @hash_map = dso_local local_unnamed_addr global %struct.map_type zeroinitializer, section ".maps", … 71 ; CHECK-NEXT: .long hash_map 90 ; CHECK-NEXT: .ascii "hash_map" # string offset=50 100 !1 = distinct !DIGlobalVariable(name: "hash_map", scope: !2, file: !3, line: 9, type: !6, isLocal: …
|
/external/rust/crates/ahash/src/ |
D | hash_map.rs | 2 use std::collections::{hash_map, HashMap}; 274 type IntoIter = hash_map::Iter<'a, K, V>; 282 type IntoIter = hash_map::IterMut<'a, K, V>; 290 type IntoIter = hash_map::IntoIter<K, V>; 342 let hash_map = HashMap::deserialize(deserializer); in deserialize() localVariable 343 hash_map.map(|hash_map| Self(hash_map)) in deserialize()
|
/external/libcxx/test/libcxx/extensions/hash_map/ |
D | const_iterator.fail.cpp | 14 __gnu_cxx::hash_map<int, int> m; in main() 16 const __gnu_cxx::hash_map<int, int> &cm = m; in main()
|
/external/llvm-project/libcxx/test/libcxx/extensions/hash_map/ |
D | const_iterator.compile.fail.cpp | 13 __gnu_cxx::hash_map<int, int> m; in main() 15 const __gnu_cxx::hash_map<int, int> &cm = m; in main()
|
/external/libcxx/test/libcxx/containers/gnu_cxx/ |
D | hash_map.pass.cpp | 18 template class hash_map<int, int>; variable 22 typedef __gnu_cxx::hash_map<int, int> Map; in main()
|
/external/llvm-project/libcxx/test/libcxx/containers/gnu_cxx/ |
D | hash_map_name_lookup.pass.cpp | 27 template class hash_map<int, int>; variable 31 typedef __gnu_cxx::hash_map<int, int> Map; in main()
|
/external/rust/crates/protobuf/src/ |
D | unknown.rs | 5 use std::collections::hash_map; 6 use std::collections::hash_map::DefaultHasher; 214 hash_map::Entry::Occupied(e) => e.into_mut(), in find_field() 215 hash_map::Entry::Vacant(e) => e.insert(Default::default()), in find_field() 288 entries: Option<hash_map::Iter<'s, u32, UnknownValues>>, 305 use std::collections::hash_map::DefaultHasher;
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | reactor_op_queue.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_;
|
/external/llvm-project/clang/test/Modules/Inputs/submodules/ |
D | module.map | 4 explicit module hash_map { header "hash_map.h" }
|
/external/clang/test/Modules/Inputs/submodules/ |
D | module.map | 4 explicit module hash_map { header "hash_map.h" }
|
/external/linux-kselftest/tools/testing/selftests/bpf/progs/ |
D | test_map_lock.c | 19 } hash_map SEC(".maps"); 41 val = bpf_map_lookup_elem(&hash_map, &key); in bpf_map_lock_test()
|
/external/rust/crates/hashbrown/tests/ |
D | hasher.rs | 26 check::<hashbrown::hash_map::DefaultHashBuilder>(); in default() 32 check::<std::collections::hash_map::RandomState>(); in random_state()
|
/external/google-breakpad/src/client/mac/handler/testcases/testdata/ |
D | dump_syms_i386_breakpad.sym | 24 FILE 23 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/c++/4.0.0/ext/hash_map 43 FILE 42 /Developer/SDKs/MacOSX10.4u.sdk/usr/include/c++/4.0.0/ext/hash_map 967 …hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st… 1177 …hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st… 1306 …hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st… 1352 …hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st… 1359 …hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st… 1476 …hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st… 1481 …hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st… 1484 …hash_map<std::string, std::pair<char const*, unsigned long long>, __gnu_cxx::hash<std::string>, st… [all …]
|
/external/rust/crates/linked-hash-map/src/ |
D | lib.rs | 46 use std::collections::hash_map::{self, HashMap}; 65 pub struct LinkedHashMap<K, V, S = hash_map::RandomState> { 849 pub struct Entries<'a, K: 'a, V: 'a, S: 'a = hash_map::RandomState> { 1156 pub enum Entry<'a, K: 'a, V: 'a, S: 'a = hash_map::RandomState> { 1164 pub struct OccupiedEntry<'a, K: 'a, V: 'a, S: 'a = hash_map::RandomState> { 1171 pub struct VacantEntry<'a, K: 'a, V: 'a, S: 'a = hash_map::RandomState> { 1319 let mut hash_map = LinkedHashMap::with_capacity(1000); in not_recycled_cycling() localVariable 1321 hash_map.insert(i, i); in not_recycled_cycling() 1325 hash_map.remove(&i); in not_recycled_cycling() 1327 hash_map.clear_free_list(); in not_recycled_cycling() [all …]
|
/external/llvm/test/CodeGen/X86/ |
D | 2012-11-30-misched-dbg.ll | 98 %"class.__gnu_cxx::hash_map" = type { %"class.__gnu_cxx::hashtable" } 103 %X = alloca %"class.__gnu_cxx::hash_map", align 8 110 …call void @llvm.dbg.declare(metadata %"class.__gnu_cxx::hash_map"* %X, metadata !31, metadata !DIE… 111 …ents.i.i.i.i = getelementptr inbounds %"class.__gnu_cxx::hash_map", %"class.__gnu_cxx::hash_map"* …
|
/external/llvm-project/clang/test/CodeGenCXX/ |
D | debug-info-use-after-free.cpp | 207 allocator < _Tp > >class hash_map { class 230 __gnu_cxx::hash_map; 265 hash_map <
|