Home
last modified time | relevance | path

Searched refs:hash_map (Results 1 – 25 of 40) sorted by relevance

12

/openbsd/src/gnu/gcc/libstdc++-v3/include/debug/
Dhash_map.h49 class hash_map
50 : public _GLIBCXX_EXT::hash_map<_Value, _Tp, _HashFcn, _EqualKey, _Alloc>,
51 public __gnu_debug::_Safe_sequence<hash_map<_Value, _Tp, _HashFcn,
54 typedef _GLIBCXX_EXT::hash_map<_Value, _Tp, _HashFcn, _EqualKey, _Alloc>
56 typedef __gnu_debug::_Safe_sequence<hash_map> _Safe_base;
72 typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, hash_map>
75 hash_map>
84 hash_map() { } in hash_map() function
86 explicit hash_map(size_type __n) : _Base(__n) { } in hash_map() function
88 hash_map(size_type __n, const hasher& __hf) : _Base(__n, __hf) { } in hash_map() function
[all …]
Dhash_map1 // Debugging hash_map/hash_multimap implementation -*- C++ -*-
31 /** @file debug/hash_map
38 #include <ext/hash_map>
39 #include <debug/hash_map.h>
/openbsd/src/gnu/llvm/libcxx/include/ext/
Dhash_map15 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&);
77 void swap(hash_map&);
[all …]
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/ext/
Dhash_map56 /** @file ext/hash_map
81 class hash_map;
84 inline bool operator==(const hash_map<_Key, _Tp, _HashFn, _EqKey, _Alloc>&,
85 const hash_map<_Key, _Tp, _HashFn, _EqKey, _Alloc>&);
93 class hash_map
125 hash_map() : _M_ht(100, hasher(), key_equal(), allocator_type()) {}
126 explicit hash_map(size_type __n)
128 hash_map(size_type __n, const hasher& __hf)
130 hash_map(size_type __n, const hasher& __hf, const key_equal& __eql,
135 hash_map(_InputIterator __f, _InputIterator __l)
[all …]
/openbsd/src/gnu/gcc/libstdc++-v3/include/ext/
Dhash_map56 /** @file ext/hash_map
82 class hash_map
124 hash_map()
128 hash_map(size_type __n)
131 hash_map(size_type __n, const hasher& __hf)
134 hash_map(size_type __n, const hasher& __hf, const key_equal& __eql,
139 hash_map(_InputIterator __f, _InputIterator __l)
144 hash_map(_InputIterator __f, _InputIterator __l, size_type __n)
149 hash_map(_InputIterator __f, _InputIterator __l, size_type __n,
155 hash_map(_InputIterator __f, _InputIterator __l, size_type __n,
[all …]
/openbsd/src/gnu/lib/libstdc++/libstdc++/testsuite/ext/
Dhash_map.cc75 hash_map<string,int> a; in test01()
76 hash_map<string,int> b; in test01()
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/backward/
Dhash_map.h65 using __gnu_cxx::hash_map;
/openbsd/src/gnu/gcc/libstdc++-v3/include/backward/
Dhash_map.h65 using __gnu_cxx::hash_map;
/openbsd/src/gnu/lib/libstdc++-v3/
DMakefile113 function.h hash_map.h hash_set.h hashtable.h heap.h iostream.h \
123 hash_map hash_set hash_fun.h hashtable.h iterator \
163 DEBUGHDRS= bitset debug.h deque formatter.h functions.h hash_map \
164 hash_map.h hash_multimap.h hash_multiset.h hash_set hash_set.h \
/openbsd/src/gnu/lib/libstdc++/libstdc++/include/
DMakefile.am188 ${backward_srcdir}/hash_map.h \
219 ${ext_srcdir}/hash_map \
DMakefile.in308 ${backward_srcdir}/hash_map.h \
340 ${ext_srcdir}/hash_map \
/openbsd/src/distrib/sets/lists/comp/
Dgcc.luna88k18 ./usr/include/g++/backward/hash_map.h
139 ./usr/include/g++/ext/hash_map
Dgcc.alpha40 ./usr/include/g++/backward/hash_map.h
158 ./usr/include/g++/debug/hash_map
159 ./usr/include/g++/debug/hash_map.h
191 ./usr/include/g++/ext/hash_map
Dgcc.sparc6417 ./usr/include/g++/backward/hash_map.h
135 ./usr/include/g++/debug/hash_map
136 ./usr/include/g++/debug/hash_map.h
168 ./usr/include/g++/ext/hash_map
Dgcc.landisk17 ./usr/include/g++/backward/hash_map.h
135 ./usr/include/g++/debug/hash_map
136 ./usr/include/g++/debug/hash_map.h
168 ./usr/include/g++/ext/hash_map
Dgcc.hppa17 ./usr/include/g++/backward/hash_map.h
135 ./usr/include/g++/debug/hash_map
136 ./usr/include/g++/debug/hash_map.h
168 ./usr/include/g++/ext/hash_map
/openbsd/src/gnu/gcc/libstdc++-v3/include/
DMakefile.am175 ${backward_srcdir}/hash_map.h \
528 ${ext_srcdir}/hash_map \
690 ${debug_srcdir}/hash_map \
691 ${debug_srcdir}/hash_map.h \
DMakefile.in401 ${backward_srcdir}/hash_map.h \
750 ${ext_srcdir}/hash_map \
914 ${debug_srcdir}/hash_map \
915 ${debug_srcdir}/hash_map.h \
/openbsd/src/gnu/lib/libstdc++/libstdc++/testsuite/
Dabi_check.cc76 typedef __gnu_cxx::hash_map<std::string, symbol_info> symbol_infos;
/openbsd/src/gnu/gcc/libstdc++-v3/docs/html/faq/
Dindex.txt765 #include <ext/hash_map>
775 non-standard hash_map and hash_set containers in the SGI STL. See
784 #include <hash_map.h>
785 namespace Sgi { using ::hash_map; }; // inherit globals
787 #include <ext/hash_map>
798 Sgi::hash_map<int,int> my_map;
854 hash_map and hash_set extensions.
/openbsd/src/gnu/lib/libstdc++/libstdc++/docs/html/faq/
Dindex.txt728 #include <ext/hash_map>
741 #include <hash_map.h>
742 namespace Sgi { using ::hash_map; }; // inherit globals
744 #include <ext/hash_map>
755 Sgi::hash_map<int,int> my_map;
/openbsd/src/gnu/lib/libstdc++/libstdc++/
DChangeLog-200139 * include/ext/hash_map: Move into __gnu_cxx,
867 * include/ext/hash_map: Add @file hook.
1091 * include/ext/hash_map: Likewise.
2748 * include/backward/hash_map.h: Likewise.
2810 * include/ext/hash_map: Likewise.
2972 * include/backward/hash_map.h: Likewise.
3034 * include/ext/hash_map: Likewise.
4088 * include/ext/hash_map: Likewise.
4198 * include/backward/hash_map.h:
4301 * include/ext/hash_map: Likewise.
[all …]
/openbsd/src/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/
DDESIGN855 as <hash_map.h>. Many of these are already placed in the
857 include them via "<backward/hash_map.h>" or "<ext/hash_map>" than
/openbsd/src/gnu/gcc/libstdc++-v3/docs/html/17_intro/
DDESIGN855 as <hash_map.h>. Many of these are already placed in the
857 include them via "<backward/hash_map.h>" or "<ext/hash_map>" than
/openbsd/src/gnu/llvm/libcxx/include/
DCMakeLists.txt794 ext/hash_map

12