Searched refs:it1 (Results 1 - 25 of 69) sorted by relevance

123

/haiku-buildtools/gcc/libstdc++-v3/testsuite/25_algorithms/find/istreambuf_iterators/char/
H A D1.cc37 in_iterator_type end1, it1; local
39 it1 = find(beg1, beg1, 'l');
40 VERIFY( it1 == beg1 );
41 VERIFY( *it1 == 'D' );
43 it1 = find(end1, end1, 'D');
44 VERIFY( it1 == end1 );
46 it1 = find(end1, end1, 'Z');
47 VERIFY( it1 == end1 );
49 it1 = find(beg1, end1, 'P');
50 VERIFY( *it1
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/deque/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = d1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/list/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = l1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/multiset/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = ms1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/set/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = s1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/unordered_set/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = us1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/vector/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = v1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = fl1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/map/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = m1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/multimap/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = mm1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/unordered_map/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = um1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/unordered_multimap/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = umm1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/unordered_multiset/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = ums1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/25_algorithms/find/istreambuf_iterators/wchar_t/
H A D1.cc37 in_iterator_type end1, it1; local
39 it1 = find(beg1, beg1, L'l');
40 VERIFY( it1 == beg1 );
41 VERIFY( *it1 == L'D' );
43 it1 = find(end1, end1, L'D');
44 VERIFY( it1 == end1 );
46 it1 = find(end1, end1, L'Z');
47 VERIFY( it1 == end1 );
49 it1 = find(beg1, end1, L'P');
50 VERIFY( *it1
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/21_strings/debug/
H A Diterator_self_move_assign_neg.cc27 auto it1 = s1.begin(); local
28 it1 = std::move(it1);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/iterators/regex_token_iterator/
H A D64303.cc35 std::sregex_token_iterator it1(s.begin(), s.end(), re), it2(it1), end;
37 for (; it1 != end; ++it1, ++it2) {
38 VERIFY(it1 == it2);
39 VERIFY(*it1 == *it2);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/unordered_multimap/insert/
H A Dhint.cc35 auto it1 = m.insert(Pair(0, 0)); local
36 VERIFY( it1 != m.end() );
37 VERIFY( it1->first == 0 );
38 VERIFY( it1->second == 0 );
40 auto it2 = m.insert(it1, Pair(0, 2));
42 VERIFY( it2 != it1 );
44 VERIFY( it2 == std::next(it1) );
47 it2 = m.insert(it1, p);
48 VERIFY( it2 == std::next(it1) );
66 auto it1 local
99 auto it1 = m.insert(Pair(0, 0)); local
[all...]
H A D24061-multimap.cc38 iterator it1 = mm1.insert(mm1.begin(), local
41 VERIFY( *it1 == value_type("all the love in the world", 1) );
43 const_iterator cit1(it1);
50 iterator it2 = mm1.insert(it1, value_type("all the love in the world", 3));
52 VERIFY( it2 != it1 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/unordered_multiset/insert/
H A D24061-multiset.cc37 iterator it1 = ms1.insert(ms1.begin(), "all the love in the world"); local
39 VERIFY( *it1 == "all the love in the world" );
41 const_iterator cit1(it1);
47 iterator it2 = ms1.insert(it1, "all the love in the world");
49 VERIFY( it2 != it1 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/unordered_map/insert/
H A D24061-map.cc38 iterator it1 = m1.insert(m1.begin(), local
41 VERIFY( *it1 == value_type("all the love in the world", 1) );
43 const_iterator cit1(it1);
50 iterator it2 = m1.insert(it1, value_type("all the love in the world", 3));
52 VERIFY( it2 == it1 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/unordered_set/insert/
H A D24061-set.cc37 iterator it1 = s1.insert(s1.begin(), "all the love in the world"); local
39 VERIFY( *it1 == "all the love in the world" );
41 const_iterator cit1(it1);
47 iterator it2 = s1.insert(it1, "all the love in the world");
49 VERIFY( it2 == it1 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/6_containers/unordered_multiset/insert/
H A D24061-multiset.cc37 iterator it1 = ms1.insert(ms1.begin(), "all the love in the world"); local
39 VERIFY( *it1 == "all the love in the world" );
41 const_iterator cit1(it1);
47 iterator it2 = ms1.insert(it1, "all the love in the world");
49 VERIFY( it2 != it1 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/6_containers/unordered_map/insert/
H A D24061-map.cc38 iterator it1 = m1.insert(m1.begin(), local
41 VERIFY( *it1 == value_type("all the love in the world", 1) );
43 const_iterator cit1(it1);
50 iterator it2 = m1.insert(it1, value_type("all the love in the world", 3));
52 VERIFY( it2 == it1 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/6_containers/unordered_set/insert/
H A D24061-set.cc37 iterator it1 = s1.insert(s1.begin(), "all the love in the world"); local
39 VERIFY( *it1 == "all the love in the world" );
41 const_iterator cit1(it1);
47 iterator it2 = s1.insert(it1, "all the love in the world");
49 VERIFY( it2 == it1 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/6_containers/unordered_multimap/insert/
H A D24061-multimap.cc38 iterator it1 = mm1.insert(mm1.begin(), local
41 VERIFY( *it1 == value_type("all the love in the world", 1) );
43 const_iterator cit1(it1);
50 iterator it2 = mm1.insert(it1, value_type("all the love in the world", 3));
52 VERIFY( it2 != it1 );

Completed in 206 milliseconds

123