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

1 2 3 4 5

  /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);
  /prebuilts/ndk/r11/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);
  /prebuilts/ndk/r11/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);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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);
  /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,
  /prebuilts/ndk/r11/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));
  /prebuilts/ndk/r11/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));
  /prebuilts/ndk/r11/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,
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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,
  /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...]
  /prebuilts/ndk/r11/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...]
  /prebuilts/ndk/r11/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...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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...]
  /external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/
emplace_hint.pass.cpp 17 // iterator emplace_hint(const_iterator p, Args&&... args);
38 R r = c.emplace_hint(e, std::piecewise_construct, std::forward_as_tuple(3),
44 r = c.emplace_hint(c.end(), std::pair<const int, Emplaceable>(3, Emplaceable(5, 6)));
50 r = c.emplace_hint(r, std::piecewise_construct, std::forward_as_tuple(3),
70 R r = c.emplace_hint(e, std::piecewise_construct, std::forward_as_tuple(3),
76 r = c.emplace_hint(c.end(), std::pair<const int, Emplaceable>(3, Emplaceable(5, 6)));
82 r = c.emplace_hint(r, std::piecewise_construct, std::forward_as_tuple(3),
103 R r = c.emplace_hint(c2.end(), std::piecewise_construct,
  /prebuilts/ndk/r11/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,
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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,
  /external/libcxx/test/std/containers/
map_allocator_requirement_test_templates.h 20 // emplace_hint(...);
453 CHECKPOINT("Testing C::emplace_hint(p, const value_type&)");
457 It ret = c.emplace_hint(c.end(), v);
464 It ret2 = c.emplace_hint(c.begin(), v2);
470 CHECKPOINT("Testing C::emplace_hint(p, value_type&)");
474 It ret = c.emplace_hint(c.end(), v);
481 It ret2 = c.emplace_hint(c.begin(), v2);
487 CHECKPOINT("Testing C::emplace_hint(p, value_type&&)");
491 It ret = c.emplace_hint(c.end(), std::move(v));
498 It ret2 = c.emplace_hint(c.begin(), std::move(v2))
    [all...]

Completed in 540 milliseconds

1 2 3 4 5