HomeSort by relevance Sort by last modified time
    Searched refs:hash_map (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /ndk/tests/build/issue53404-backward-compatibility/jni/
issue53404-backward-compatibility.cpp 1 #include <ext/hash_map>
  /external/libcxx/test/std/extensions/hash_map/
const_iterator.fail.cpp 10 #include <ext/hash_map>
14 __gnu_cxx::hash_map<int, int> m;
16 const __gnu_cxx::hash_map<int, int> &cm = m;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/extensions/hash_map/
const_iterator.fail.cpp 10 #include <ext/hash_map>
14 __gnu_cxx::hash_map<int, int> m;
16 const __gnu_cxx::hash_map<int, int> &cm = m;
  /system/bt/osi/src/
hash_map.c 22 #include "osi/include/hash_map.h"
64 hash_map_t *hash_map = zeroed_allocator->alloc(sizeof(hash_map_t)); local
65 if (hash_map == NULL)
68 hash_map->hash_fn = hash_fn;
69 hash_map->key_fn = key_fn;
70 hash_map->data_fn = data_fn;
71 hash_map->allocator = zeroed_allocator;
72 hash_map->keys_are_equal = equality_fn ? equality_fn : default_key_equality;
74 hash_map->num_bucket = num_bucket;
75 hash_map->bucket = zeroed_allocator->alloc(sizeof(hash_map_bucket_t) * num_bucket)
218 const hash_map_t *hash_map = hash_map_entry->hash_map; local
    [all...]
  /external/clang/test/Modules/Inputs/submodules/
hash_map.h 1 template<typename Key, typename Data> class hash_map { }; class
  /external/clang/test/Modules/
submodules.cpp 12 // expected-note@Inputs/submodules/hash_map.h:1{{previous}}
23 // hash_map still isn't available.
24 hash_map<int, float> ints_to_floats; // expected-error{{declaration of 'hash_map' must be imported from module 'std.hash_map' before it is required}}
26 @import std.hash_map;
28 hash_map<int, float> ints_to_floats2;
  /system/bt/osi/include/
hash_map.h 31 const hash_map_t *hash_map; member in struct:hash_map_entry_t
45 // Returns a new, empty hash_map. Returns NULL if not enough memory could be allocated
46 // for the hash_map structure. The returned hash_map must be freed with |hash_map_free|.
49 // The |key_fn| and |data_fn| are called whenever a hash_map element is removed from
50 // the hash_map. They can be used to release resources held by the hash_map element,
61 // Frees the hash_map. This function accepts NULL as an argument, in which case it
63 void hash_map_free(hash_map_t *hash_map);
65 // Returns true if the hash_map is empty (has no elements), false otherwise
    [all...]
  /external/libcxx/test/std/extensions/hash/
specializations.fail.cpp 11 #include <ext/hash_map>
specializations.pass.cpp 13 #include <ext/hash_map>
  /external/protobuf/vsprojects/
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 */
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/extensions/hash/
specializations.fail.cpp 11 #include <ext/hash_map>
specializations.pass.cpp 11 #include <ext/hash_map>
  /system/bt/osi/test/
hash_map_test.cpp 24 #include "osi/include/hash_map.h"
46 hash_map_t *hash_map = hash_map_new(5, hash_map_fn00, NULL, NULL, NULL); local
47 ASSERT_TRUE(hash_map != NULL);
48 hash_map_free(hash_map);
52 hash_map_t *hash_map = hash_map_new(5, hash_map_fn00, NULL, NULL, NULL); local
53 ASSERT_TRUE(hash_map != NULL);
68 EXPECT_EQ(i, hash_map_size(hash_map));
69 hash_map_set(hash_map, data[i].key, (void*)data[i].data);
70 EXPECT_EQ(i + 1, hash_map_size(hash_map));
73 EXPECT_EQ(data_sz, hash_map_size(hash_map));
85 hash_map_t *hash_map = hash_map_new(5, hash_map_fn00, NULL, NULL, NULL); local
116 hash_map_t *hash_map = hash_map_new(5, hash_map_fn00, key_free_fn00, data_free_fn00, NULL); local
186 hash_map_t *hash_map = hash_map_new(5, hash_map_fn00, key_free_fn00, data_free_fn00, NULL); local
    [all...]
  /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'}}
  /external/google-breakpad/src/common/
unordered.h 32 // hash_map by defining BP_USE_HASH_SET.
38 #include <hash_map>
45 struct unordered_map : public hash_map<T, U, H> {};
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
hash.h 33 // Deals with the fact that hash_map is not defined everywhere.
69 # include <ext/hash_map>
70 # define GOOGLE_PROTOBUF_HASH_MAP_CLASS hash_map
83 # include <backward/hash_map>
84 # define GOOGLE_PROTOBUF_HASH_MAP_CLASS hash_map
94 # include <hash_map>
95 # define GOOGLE_PROTOBUF_HASH_MAP_CLASS hash_map
101 // Apparently Microsoft decided to move hash_map *back* to the std namespace in
112 # include <hash_map>
113 # define GOOGLE_PROTOBUF_HASH_MAP_CLASS hash_map
215 class hash_map : public std::map<Key, Data, HashFcn, Alloc> { class in namespace:google::protobuf
219 hash_map(int a = 0, const HashFcn& b = HashFcn(), function in class:google::protobuf::hash_map
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
message_facets.h 23 #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/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) {}
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_config_compat_post.h 44 # define __hash_map__ hash_map
_hash_map.h 45 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(_InputIterator __f, _InputIterator __l, size_type __n 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...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_config_compat_post.h 44 # define __hash_map__ hash_map
  /ndk/sources/cxx-stl/stlport/stlport/
hash_map 35 # error The hash_map and hash_multimap class are STLport extensions.
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/config/stdlib/
libstdcpp3.hpp 86 # define BOOST_HASH_MAP_HEADER <ext/hash_map>
89 # define BOOST_HASH_MAP_HEADER <backward/hash_map>
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/
hash_map 35 # error The hash_map and hash_multimap class are STLport extensions.
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
reactor_op_queue.hpp 16 #include "asio/detail/hash_map.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_;

Completed in 395 milliseconds

1 2 3 4