HomeSort by relevance Sort by last modified time
    Searched full:unordered_map (Results 1 - 25 of 717) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/cython/src/Cython/Includes/libcpp/
unordered_map.pxd 3 cdef extern from "<unordered_map>" namespace "std":
4 cdef cppclass unordered_map[T, U]:
21 unordered_map() nogil except +
22 unordered_map(unordered_map&) nogil except +
23 #unordered_map(key_compare&)
25 #unordered_map& operator=(unordered_map&)
26 bint operator==(unordered_map&, unordered_map&) nogi
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/
ResourceManager.h 19 #include <unordered_map>
84 typedef std::unordered_map<GLuint, Buffer*> BufferMap;
88 typedef std::unordered_map<GLuint, Shader*> ShaderMap;
91 typedef std::unordered_map<GLuint, Program*> ProgramMap;
95 typedef std::unordered_map<GLuint, Texture*> TextureMap;
99 typedef std::unordered_map<GLuint, Renderbuffer*> RenderbufferMap;
103 typedef std::unordered_map<GLuint, Sampler*> SamplerMap;
107 typedef std::unordered_map<GLuint, FenceSync*> FenceMap;
  /external/openfst/
fix_headers.sh 19 fix_tr1 "tr1\/unordered_map" "unordered_map"
  /external/libcxx/test/containers/unord/unord.map/unord.map.swap/
db_swap_1.pass.cpp 10 // <unordered_map>
14 // class unordered_map
16 // void swap(unordered_map& x, unordered_map& y);
22 #include <unordered_map>
32 std::unordered_map<int, int> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
33 std::unordered_map<int, int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
34 std::unordered_map<int, int>::iterator i1 = c1.begin();
35 std::unordered_map<int, int>::iterator i2 = c2.begin();
39 std::unordered_map<int, int>::iterator j = i1
    [all...]
swap_noexcept.pass.cpp 10 // <unordered_map>
12 // void swap(unordered_map& c)
18 #include <unordered_map>
45 typedef std::unordered_map<MoveOnly, MoveOnly> C;
50 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
56 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
62 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C;
67 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.swap/
db_swap_1.pass.cpp 10 // <unordered_map>
14 // class unordered_map
16 // void swap(unordered_map& x, unordered_map& y);
22 #include <unordered_map>
32 std::unordered_map<int, int> c1(a1, a1+sizeof(a1)/sizeof(a1[0]));
33 std::unordered_map<int, int> c2(a2, a2+sizeof(a2)/sizeof(a2[0]));
34 std::unordered_map<int, int>::iterator i1 = c1.begin();
35 std::unordered_map<int, int>::iterator i2 = c2.begin();
39 std::unordered_map<int, int>::iterator j = i1
    [all...]
swap_noexcept.pass.cpp 10 // <unordered_map>
12 // void swap(unordered_map& c)
18 #include <unordered_map>
45 typedef std::unordered_map<MoveOnly, MoveOnly> C;
50 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
56 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
62 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C;
67 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
  /external/libcxx/test/containers/unord/unord.map/
compare.pass.cpp 10 // <unordered_map>
14 // class unordered_map
19 #include <unordered_map>
38 std::unordered_map<Key, int>::iterator it =
39 std::unordered_map<Key, int>().find(Key(0));
40 std::pair<std::unordered_map<Key, int>::iterator, bool> result =
41 std::unordered_map<Key, int>().insert(std::make_pair(Key(0), 0));
max_bucket_count.pass.cpp 10 // <unordered_map>
14 // class unordered_map
18 #include <unordered_map>
27 typedef std::unordered_map<int, std::string> C;
35 typedef std::unordered_map<int, std::string, std::hash<int>, std::equal_to<int>,
max_size.pass.cpp 10 // <unordered_map>
14 // class unordered_map
18 #include <unordered_map>
26 std::unordered_map<int, int> u;
31 std::unordered_map<int, int, std::hash<int>, std::equal_to<int>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/
compare.pass.cpp 10 // <unordered_map>
14 // class unordered_map
19 #include <unordered_map>
38 std::unordered_map<Key, int>::iterator it =
39 std::unordered_map<Key, int>().find(Key(0));
40 std::pair<std::unordered_map<Key, int>::iterator, bool> result =
41 std::unordered_map<Key, int>().insert(std::make_pair(Key(0), 0));
  /external/libcxx/test/containers/unord/unord.map/unord.map.cnstr/
move_assign_noexcept.pass.cpp 10 // <unordered_map>
12 // unordered_map& operator=(unordered_map&& c)
20 #include <unordered_map>
46 typedef std::unordered_map<MoveOnly, MoveOnly> C;
50 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
55 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
60 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C;
64 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
move_noexcept.pass.cpp 10 // <unordered_map>
12 // unordered_map(unordered_map&&)
18 #include <unordered_map>
43 typedef std::unordered_map<MoveOnly, MoveOnly> C;
47 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
52 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
57 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C;
61 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
default_noexcept.pass.cpp 10 // <unordered_map>
12 // unordered_map()
20 #include <unordered_map>
47 typedef std::unordered_map<MoveOnly, MoveOnly> C;
51 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
56 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
61 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C;
65 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
dtor_noexcept.pass.cpp 10 // <unordered_map>
12 // ~unordered_map() // implied noexcept;
14 #include <unordered_map>
44 typedef std::unordered_map<MoveOnly, MoveOnly> C;
48 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
53 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
58 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C;
62 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.cnstr/
move_assign_noexcept.pass.cpp 10 // <unordered_map>
12 // unordered_map& operator=(unordered_map&& c)
20 #include <unordered_map>
46 typedef std::unordered_map<MoveOnly, MoveOnly> C;
50 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
55 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
60 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C;
64 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
move_noexcept.pass.cpp 10 // <unordered_map>
12 // unordered_map(unordered_map&&)
18 #include <unordered_map>
43 typedef std::unordered_map<MoveOnly, MoveOnly> C;
47 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
52 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
57 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C;
61 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
default_noexcept.pass.cpp 10 // <unordered_map>
12 // unordered_map()
20 #include <unordered_map>
47 typedef std::unordered_map<MoveOnly, MoveOnly> C;
51 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
56 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
61 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C;
65 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
dtor_noexcept.pass.cpp 10 // <unordered_map>
12 // ~unordered_map() // implied noexcept;
14 #include <unordered_map>
44 typedef std::unordered_map<MoveOnly, MoveOnly> C;
48 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
53 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
58 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>> C;
62 typedef std::unordered_map<MoveOnly, MoveOnly, std::hash<MoveOnly>,
  /external/libcxx/test/containers/unord/unord.multimap/
scary.pass.cpp 10 // <unordered_map>
12 // class unordered_map class unordered_multimap
14 // Extension: SCARY/N2913 iterator compatibility between unordered_map and unordered_multimap
16 #include <unordered_map>
20 typedef std::unordered_map<int, int> M1;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/
scary.pass.cpp 10 // <unordered_map>
12 // class unordered_map class unordered_multimap
14 // Extension: SCARY/N2913 iterator compatibility between unordered_map and unordered_multimap
16 #include <unordered_map>
20 typedef std::unordered_map<int, int> M1;
  /external/chromium_org/third_party/brotli/src/brotli/enc/
static_dict.h 21 #include <unordered_map>
31 std::unordered_map<std::string, int>::const_iterator it = map_.find(str);
45 std::unordered_map<int, int>::const_iterator it = prefix_map_.find(v);
52 std::unordered_map<std::string, int>::const_iterator it = map_.find(str);
62 std::unordered_map<std::string, int> map_;
63 std::unordered_map<int, int> prefix_map_;
  /external/libcxx/test/containers/unord/unord.map/unorder.map.modifiers/
erase_iter_db2.pass.cpp 10 // <unordered_map>
18 #include <unordered_map>
28 std::unordered_map<int, int> l1(a1, a1+3);
29 std::unordered_map<int, int> l2(a1, a1+3);
30 std::unordered_map<int, int>::const_iterator i = l2.begin();
erase_iter_iter_db1.pass.cpp 10 // <unordered_map>
18 #include <unordered_map>
28 std::unordered_map<int, int> l1(a1, a1+3);
29 std::unordered_map<int, int> l2(a1, a1+3);
30 std::unordered_map<int, int>::iterator i = l1.erase(l2.cbegin(), next(l1.cbegin()));
erase_iter_iter_db2.pass.cpp 10 // <unordered_map>
18 #include <unordered_map>
28 std::unordered_map<int, int> l1(a1, a1+3);
29 std::unordered_map<int, int> l2(a1, a1+3);
30 std::unordered_map<int, int>::iterator i = l1.erase(l1.cbegin(), next(l2.cbegin()));

Completed in 593 milliseconds

1 2 3 4 5 6 7 8 91011>>