Searched refs:hash_map (Results 1 - 25 of 291) sorted by last modified time

1234567891011>>

/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp3839 typedef __gnu_cxx::hash_map<int, int> map_t;
6247 typedef __gnu_cxx::hash_map<int, int> map_t;
6434 typedef __gnu_cxx::hash_map<int, int> Container;
/external/stlport/src/
H A Ddll_main.cpp47 #include <hash_map>
H A Dfacets_byname.cpp20 #include <hash_map>
H A Dlocale_catalog.cpp20 #include <hash_map>
99 typedef hash_map<string, pair<void*, size_t>, hash<string>, equal_to<string> > Category_Map;
H A Dmessage_facets.h23 #include <hash_map>
43 typedef hash_map<nl_catd_type, locale, hash<nl_catd_type>, equal_to<nl_catd_type>,
78 typedef hash_map<messages_base::catalog, nl_catd_type, hash<messages_base::catalog>, equal_to<messages_base::catalog>,
80 typedef hash_map<nl_catd_type, messages_base::catalog, hash<nl_catd_type>, equal_to<nl_catd_type>,
/external/stlport/stlport/
H A Dhash_map35 # error The hash_map and hash_multimap class are STLport extensions.
/external/stlport/stlport/stl/
H A D_config_compat_post.h44 # define __hash_map__ hash_map
H A D_hash_map.h45 class hash_map class in inherits:__stlport_class
47 : public __stlport_class<hash_map<_Key, _Tp, _HashFcn, _EqualKey, _Alloc> >
51 typedef hash_map<_Key, _Tp, _HashFcn, _EqualKey, _Alloc> _Self;
88 hash_map() : _M_ht(0, hasher(), key_equal(), allocator_type()) {} function in class:hash_map
89 explicit hash_map(size_type __n) function in class:hash_map
91 hash_map(size_type __n, const hasher& __hf) function in class:hash_map
93 hash_map(size_type __n, const hasher& __hf, const key_equal& __eql, function in class:hash_map
98 hash_map(__move_source<_Self> src) function in class:hash_map
105 hash_map(_InputIterator __f, _InputIterator __l) function in class:hash_map
109 hash_map(_InputIterato function in class:hash_map
113 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, function in class:hash_map
119 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, function in class:hash_map
125 hash_map(_InputIterator __f, _InputIterator __l, size_type __n, function in class:hash_map
132 hash_map(const value_type* __f, const value_type* __l) function in class:hash_map
135 hash_map(const value_type* __f, const value_type* __l, size_type __n) function in class:hash_map
138 hash_map(const value_type* __f, const value_type* __l, size_type __n, function in class:hash_map
142 hash_map(const value_type* __f, const value_type* __l, size_type __n, function in class:hash_map
148 hash_map(const_iterator __f, const_iterator __l) function in class:hash_map
151 hash_map(const_iterator __f, const_iterator __l, size_type __n) function in class:hash_map
154 hash_map(const_iterator __f, const_iterator __l, size_type __n, function in class:hash_map
158 hash_map(const_iterator __f, const_iterator __l, size_type __n, function in class:hash_map
[all...]
/external/stlport/test/eh/
H A Dtest_hash_map.cpp21 # include <hash_map>
33 template class hash_map<TestClass, TestClass, ThrowHash, ThrowEqual>;
/external/stlport/test/unit/
H A Dhash_test.cpp11 # include <hash_map>
79 typedef hash_map<char, crope, hash<char>, equal_to<char> > maptype;
314 typedef hash_map<string, size_t, hash<string>, equal_to<string> > hmap;
428 hash_map<IncompleteClass, IncompleteClass> hminstances;
429 typedef hash_map<IncompleteClass, IncompleteClass>::iterator hmit;
H A Dmvctor_declaration_test.cpp20 # include <hash_map>
353 // hash_set, hash_multiset, hash_map, hash_multimap:
363 CPPUNIT_ASSERT( is_movable(hash_map<char, char>()) );
/external/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.cc249 // map instead of hash_map so that files are written in order (good when
609 typedef hash_map<string, MemoryOutputDirectory*> OutputDirectoryMap;
H A Dimporter_unittest.cc96 hash_map<string, const char*> files_;
H A Dparser.cc59 typedef hash_map<string, FieldDescriptorProto::Type> TypeNameMap;
/external/protobuf/src/google/protobuf/
H A Ddescriptor.cc187 // Used only by MSVC and platforms where hash_map is not available.
208 // Used only by MSVC and platforms where hash_map is not available.
277 typedef hash_map<const char*, Symbol,
280 typedef hash_map<PointerStringPair, Symbol,
283 typedef hash_map<const char*, const FileDescriptor*,
286 typedef hash_map<PointerStringPair, const FieldDescriptor*,
289 typedef hash_map<DescriptorIntPair, const FieldDescriptor*,
292 typedef hash_map<EnumIntPair, const EnumValueDescriptor*,
295 // This is a map rather than a hash_map, since we use it to iterate
H A Ddynamic_message.cc432 typedef hash_map<const Descriptor*, const DynamicMessage::TypeInfo*> Map;
H A Dextension_set.cc62 typedef hash_map<pair<const MessageLite*, int>,
H A Dmessage.cc210 hash_map<const char*, RegistrationFunc*,
215 hash_map<const Descriptor*, const Message*> type_map_;
/external/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
124 class hash_map : public HASH_NAMESPACE::hash_map<
164 class hash_map : public HASH_NAMESPACE::HASH_MAP_CLASS<
/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/protobuf/
H A Dconfigure15607 { $as_echo "$as_me:${as_lineno-$LINENO}: checking the location of hash_map" >&5
15608 $as_echo_n "checking the location of hash_map... " >&6; }
15618 for location in tr1/unordered_map ext/hash_map hash_map; do
15620 for name in unordered_map hash_map; do
15627 # implementation and avoid using it. Note that ext/hash_map works
15690 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: could not find an STL hash_map" >&5
15691 $as_echo "$as_me: WARNING: could not find an STL hash_map" >&2;}
/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/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugPubnamesSet.h19 #include <ext/hash_map>
/external/libcxx/test/extensions/hash/
H A Dspecializations.fail.cpp11 #include <ext/hash_map>
H A Dspecializations.pass.cpp11 #include <ext/hash_map>

Completed in 5996 milliseconds

1234567891011>>