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

1 2 3 4

  /external/libcxx/test/std/containers/unord/unord.multiset/
emplace_hint.pass.cpp 17 // iterator emplace_hint(const_iterator p, Args&&... args);
37 R r = c.emplace_hint(e);
41 r = c.emplace_hint(c.end(), Emplaceable(5, 6));
45 r = c.emplace_hint(r, 5, 6);
56 R r = c.emplace_hint(e);
60 r = c.emplace_hint(c.end(), Emplaceable(5, 6));
64 r = c.emplace_hint(r, 5, 6);
75 R r = c1.emplace_hint(c2.begin(), 5, 6);
  /external/libcxx/test/std/containers/unord/unord.set/
emplace_hint.pass.cpp 17 // iterator emplace_hint(const_iterator p, Args&&... args);
37 R r = c.emplace_hint(e);
41 r = c.emplace_hint(e, Emplaceable(5, 6));
45 r = c.emplace_hint(r, 5, 6);
56 R r = c.emplace_hint(e);
60 r = c.emplace_hint(e, Emplaceable(5, 6));
64 r = c.emplace_hint(r, 5, 6);
75 R r = c1.emplace_hint(c2.begin(), 5, 6);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
emplace_hint.pass.cpp 17 // iterator emplace_hint(const_iterator p, Args&&... args);
37 R r = c.emplace_hint(e);
41 r = c.emplace_hint(c.end(), Emplaceable(5, 6));
45 r = c.emplace_hint(r, 5, 6);
56 R r = c.emplace_hint(e);
60 r = c.emplace_hint(c.end(), Emplaceable(5, 6));
64 r = c.emplace_hint(r, 5, 6);
75 R r = c1.emplace_hint(c2.begin(), 5, 6);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/
emplace_hint.pass.cpp 17 // iterator emplace_hint(const_iterator p, Args&&... args);
37 R r = c.emplace_hint(e);
41 r = c.emplace_hint(e, Emplaceable(5, 6));
45 r = c.emplace_hint(r, 5, 6);
56 R r = c.emplace_hint(e);
60 r = c.emplace_hint(e, Emplaceable(5, 6));
64 r = c.emplace_hint(r, 5, 6);
75 R r = c1.emplace_hint(c2.begin(), 5, 6);
  /external/libcxx/test/std/containers/associative/multiset/
emplace_hint.pass.cpp 15 // iterator emplace_hint(const_iterator position, Args&&... args);
32 R r = m.emplace_hint(m.cend());
38 r = m.emplace_hint(m.cbegin());
49 R r = m.emplace_hint(m.cend());
53 r = m.emplace_hint(m.cend(), 2, 3.5);
57 r = m.emplace_hint(m.cbegin(), 2, 3.5);
66 R r = m.emplace_hint(m.cend(), M::value_type(2));
76 R r = m.emplace_hint(m.cend(), M::value_type(2));
  /external/libcxx/test/std/containers/associative/set/
emplace_hint.pass.cpp 15 // iterator emplace_hint(const_iterator position, Args&&... args);
32 R r = m.emplace_hint(m.cend());
38 r = m.emplace_hint(m.cbegin());
49 R r = m.emplace_hint(m.cend());
53 r = m.emplace_hint(m.cend(), 2, 3.5);
57 r = m.emplace_hint(m.cbegin(), 2, 3.5);
66 R r = m.emplace_hint(m.cend(), M::value_type(2));
76 R r = m.emplace_hint(m.cend(), M::value_type(2));
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
emplace_hint.pass.cpp 17 // iterator emplace_hint(const_iterator p, Args&&... args);
37 R r = c.emplace_hint(e, std::piecewise_construct, std::forward_as_tuple(3),
43 r = c.emplace_hint(c.end(), std::pair<const int, Emplaceable>(4, Emplaceable(5, 6)));
48 r = c.emplace_hint(c.end(), std::piecewise_construct, std::forward_as_tuple(5),
61 R r = c.emplace_hint(e, std::piecewise_construct, std::forward_as_tuple(3),
67 r = c.emplace_hint(c.end(), std::pair<const int, Emplaceable>(4, Emplaceable(5, 6)));
72 r = c.emplace_hint(c.end(), std::piecewise_construct, std::forward_as_tuple(5),
86 R r = c.emplace_hint(c2.end(), std::piecewise_construct,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/
emplace_hint.pass.cpp 15 // iterator emplace_hint(const_iterator position, Args&&... args);
32 R r = m.emplace_hint(m.cend());
38 r = m.emplace_hint(m.cbegin());
49 R r = m.emplace_hint(m.cend());
53 r = m.emplace_hint(m.cend(), 2, 3.5);
57 r = m.emplace_hint(m.cbegin(), 2, 3.5);
66 R r = m.emplace_hint(m.cend(), M::value_type(2));
76 R r = m.emplace_hint(m.cend(), M::value_type(2));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/
emplace_hint.pass.cpp 15 // iterator emplace_hint(const_iterator position, Args&&... args);
32 R r = m.emplace_hint(m.cend());
38 r = m.emplace_hint(m.cbegin());
49 R r = m.emplace_hint(m.cend());
53 r = m.emplace_hint(m.cend(), 2, 3.5);
57 r = m.emplace_hint(m.cbegin(), 2, 3.5);
66 R r = m.emplace_hint(m.cend(), M::value_type(2));
76 R r = m.emplace_hint(m.cend(), M::value_type(2));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unorder.map.modifiers/
emplace_hint.pass.cpp 17 // iterator emplace_hint(const_iterator p, Args&&... args);
37 R r = c.emplace_hint(e, std::piecewise_construct, std::forward_as_tuple(3),
43 r = c.emplace_hint(c.end(), std::pair<const int, Emplaceable>(4, Emplaceable(5, 6)));
48 r = c.emplace_hint(c.end(), std::piecewise_construct, std::forward_as_tuple(5),
61 R r = c.emplace_hint(e, std::piecewise_construct, std::forward_as_tuple(3),
67 r = c.emplace_hint(c.end(), std::pair<const int, Emplaceable>(4, Emplaceable(5, 6)));
72 r = c.emplace_hint(c.end(), std::piecewise_construct, std::forward_as_tuple(5),
86 R r = c.emplace_hint(c2.end(), std::piecewise_construct,
  /external/libcxx/test/std/containers/associative/map/map.modifiers/
emplace_hint.pass.cpp 15 // iterator emplace_hint(const_iterator position, Args&&... args);
32 R r = m.emplace_hint(m.end());
38 r = m.emplace_hint(m.end(), std::piecewise_construct,
46 r = m.emplace_hint(m.end(), std::piecewise_construct,
60 R r = m.emplace_hint(m.end(), std::piecewise_construct,
67 r = m.emplace_hint(m.end(), std::piecewise_construct,
74 r = m.emplace_hint(m.end(), std::piecewise_construct,
86 R r = m.emplace_hint(m.end(), M::value_type(2, 3.5));
98 R r = m.emplace_hint(m.end());
104 r = m.emplace_hint(m.end(), std::piecewise_construct
    [all...]
  /external/libcxx/test/std/containers/associative/multimap/multimap.modifiers/
emplace_hint.pass.cpp 15 // iterator emplace_hint(const_iterator position, Args&&... args);
32 R r = m.emplace_hint(m.cend());
38 r = m.emplace_hint(m.cend(), std::piecewise_construct,
46 r = m.emplace_hint(m.cend(), std::piecewise_construct,
60 R r = m.emplace_hint(m.cend(), std::piecewise_construct,
67 r = m.emplace_hint(m.cbegin(), std::piecewise_construct,
74 r = m.emplace_hint(m.cbegin(), std::piecewise_construct,
86 R r = m.emplace_hint(m.cend(), M::value_type(2, 3.5));
98 R r = m.emplace_hint(m.cend());
104 r = m.emplace_hint(m.cend(), std::piecewise_construct
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/map/map.modifiers/
emplace_hint.pass.cpp 15 // iterator emplace_hint(const_iterator position, Args&&... args);
32 R r = m.emplace_hint(m.end());
38 r = m.emplace_hint(m.end(), std::piecewise_construct,
46 r = m.emplace_hint(m.end(), std::piecewise_construct,
60 R r = m.emplace_hint(m.end(), std::piecewise_construct,
67 r = m.emplace_hint(m.end(), std::piecewise_construct,
74 r = m.emplace_hint(m.end(), std::piecewise_construct,
86 R r = m.emplace_hint(m.end(), M::value_type(2, 3.5));
98 R r = m.emplace_hint(m.end());
104 r = m.emplace_hint(m.end(), std::piecewise_construct
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multimap/multimap.modifiers/
emplace_hint.pass.cpp 15 // iterator emplace_hint(const_iterator position, Args&&... args);
32 R r = m.emplace_hint(m.cend());
38 r = m.emplace_hint(m.cend(), std::piecewise_construct,
46 r = m.emplace_hint(m.cend(), std::piecewise_construct,
60 R r = m.emplace_hint(m.cend(), std::piecewise_construct,
67 r = m.emplace_hint(m.cbegin(), std::piecewise_construct,
74 r = m.emplace_hint(m.cbegin(), std::piecewise_construct,
86 R r = m.emplace_hint(m.cend(), M::value_type(2, 3.5));
98 R r = m.emplace_hint(m.cend());
104 r = m.emplace_hint(m.cend(), std::piecewise_construct
    [all...]
  /external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/
emplace_hint.pass.cpp 17 // iterator emplace_hint(const_iterator p, Args&&... args);
37 R r = c.emplace_hint(e, std::piecewise_construct, std::forward_as_tuple(3),
43 r = c.emplace_hint(c.end(), std::pair<const int, Emplaceable>(3, Emplaceable(5, 6)));
49 r = c.emplace_hint(r, std::piecewise_construct, std::forward_as_tuple(3),
69 R r = c.emplace_hint(e, std::piecewise_construct, std::forward_as_tuple(3),
75 r = c.emplace_hint(c.end(), std::pair<const int, Emplaceable>(3, Emplaceable(5, 6)));
81 r = c.emplace_hint(r, std::piecewise_construct, std::forward_as_tuple(3),
102 R r = c.emplace_hint(c2.end(), std::piecewise_construct,
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.modifiers/
emplace_hint.pass.cpp 17 // iterator emplace_hint(const_iterator p, Args&&... args);
37 R r = c.emplace_hint(e, std::piecewise_construct, std::forward_as_tuple(3),
43 r = c.emplace_hint(c.end(), std::pair<const int, Emplaceable>(3, Emplaceable(5, 6)));
49 r = c.emplace_hint(r, std::piecewise_construct, std::forward_as_tuple(3),
69 R r = c.emplace_hint(e, std::piecewise_construct, std::forward_as_tuple(3),
75 r = c.emplace_hint(c.end(), std::pair<const int, Emplaceable>(3, Emplaceable(5, 6)));
81 r = c.emplace_hint(r, std::piecewise_construct, std::forward_as_tuple(3),
102 R r = c.emplace_hint(c2.end(), std::piecewise_construct,
  /art/runtime/
safe_map.h 107 return map_.emplace_hint(pos, k, v);
113 return map_.emplace_hint(pos, k, std::move(v));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
unordered_set.h 326 emplace_hint(const_iterator __pos, _Args&&... __args) function in class:unordered_set
327 { return _M_h.emplace_hint(__pos, std::forward<_Args>(__args)...); }
919 emplace_hint(const_iterator __pos, _Args&&... __args) function in class:unordered_multiset
920 { return _M_h.emplace_hint(__pos, std::forward<_Args>(__args)...); }
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
unordered_set.h 326 emplace_hint(const_iterator __pos, _Args&&... __args) function in class:unordered_set
327 { return _M_h.emplace_hint(__pos, std::forward<_Args>(__args)...); }
919 emplace_hint(const_iterator __pos, _Args&&... __args) function in class:unordered_multiset
920 { return _M_h.emplace_hint(__pos, std::forward<_Args>(__args)...); }
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
unordered_set.h 326 emplace_hint(const_iterator __pos, _Args&&... __args) function in class:unordered_set
327 { return _M_h.emplace_hint(__pos, std::forward<_Args>(__args)...); }
919 emplace_hint(const_iterator __pos, _Args&&... __args) function in class:unordered_multiset
920 { return _M_h.emplace_hint(__pos, std::forward<_Args>(__args)...); }
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
unordered_set.h 355 emplace_hint(const_iterator __pos, _Args&&... __args) function in class:unordered_set
356 { return _M_h.emplace_hint(__pos, std::forward<_Args>(__args)...); }
978 emplace_hint(const_iterator __pos, _Args&&... __args) function in class:unordered_multiset
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/debug/
map.h 217 emplace_hint(const_iterator __pos, _Args&&... __args) function in class:__debug::map
220 return iterator(_Base::emplace_hint(__pos.base(),
multimap.h 207 emplace_hint(const_iterator __pos, _Args&&... __args) function in class:__debug::multimap
210 return iterator(_Base::emplace_hint(__pos.base(),
multiset.h 206 emplace_hint(const_iterator __pos, _Args&&... __args) function in class:__debug::multiset
209 return iterator(_Base::emplace_hint(__pos.base(),
set.h 208 emplace_hint(const_iterator __pos, _Args&&... __args) function in class:__debug::set
211 return iterator(_Base::emplace_hint(__pos.base(),

Completed in 544 milliseconds

1 2 3 4