Searched refs:cit (Results 1 - 23 of 23) sorted by relevance

/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/6_containers/unordered_map/requirements/
H A Diterator_neg.cc31 Map::const_iterator cit = m.begin(); local
32 (*cit).second = 0; // { dg-error "read-only" }
37 Map::iterator it = cit; // { dg-error "conversion" }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/6_containers/unordered_multimap/requirements/
H A Diterator_neg.cc31 Mmap::const_iterator cit = mm.begin(); local
32 (*cit).second = 0; // { dg-error "read-only" }
37 Mmap::iterator it = cit; // { dg-error "conversion" }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/multimap/operations/
H A D2.cc51 auto cit = cx.find(3L); local
52 VERIFY( cit != cx.end() && cit->second == '4' );
53 cit = cx.find(2L);
54 VERIFY( cit == cx.end() );
60 static_assert(std::is_same<decltype(cit), test_type::const_iterator>::value,
92 auto cit = cx.lower_bound(1L); local
93 VERIFY( cit != cx.end() && cit->second == '2' );
94 cit
110 auto cit = cx.upper_bound(1L); local
128 auto cit = cx.equal_range(3L); local
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/multiset/operations/
H A D2.cc51 auto cit = cx.find(3L); local
52 VERIFY( cit != cx.end() && *cit == 3 );
53 cit = cx.find(2L);
54 VERIFY( cit == cx.end() );
60 static_assert(std::is_same<decltype(cit), test_type::const_iterator>::value,
92 auto cit = cx.lower_bound(1L); local
93 VERIFY( cit != cx.end() && *cit == 1 );
94 cit
110 auto cit = cx.upper_bound(1L); local
128 auto cit = cx.equal_range(3L); local
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/set/operations/
H A D2.cc51 auto cit = cx.find(3L); local
52 VERIFY( cit != cx.end() && *cit == 3 );
53 cit = cx.find(2L);
54 VERIFY( cit == cx.end() );
60 static_assert(std::is_same<decltype(cit), test_type::const_iterator>::value,
92 auto cit = cx.lower_bound(1L); local
93 VERIFY( cit != cx.end() && *cit == 1 );
94 cit
110 auto cit = cx.upper_bound(1L); local
128 auto cit = cx.equal_range(1L); local
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/map/operations/
H A D2.cc51 auto cit = cx.find(3L); local
52 VERIFY( cit != cx.end() && cit->second == '4' );
53 cit = cx.find(2L);
54 VERIFY( cit == cx.end() );
60 static_assert(std::is_same<decltype(cit), test_type::const_iterator>::value,
92 auto cit = cx.lower_bound(1L); local
93 VERIFY( cit != cx.end() && cit->second == '2' );
94 cit
110 auto cit = cx.upper_bound(1L); local
128 auto cit = cx.equal_range(1L); local
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/map/
H A D23781_neg.cc28 std::map<int, int>::const_iterator cit = NULL; // { dg-error "conversion" } variable
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/multimap/
H A D23781_neg.cc28 std::multimap<int, int>::const_iterator cit = NULL; // { dg-error "conversion" } variable
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/list/
H A D23781_neg.cc29 list_type::const_iterator cit = NULL; // { dg-error "conversion" } variable
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/multiset/
H A D23781_neg.cc28 std::multiset<int>::const_iterator cit = NULL; // { dg-error "conversion" } variable
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/set/
H A D23781_neg.cc28 std::set<int>::const_iterator cit = NULL; // { dg-error "conversion" } variable
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/iterators/regex_iterator/ctors/char/
H A Ddefault.cc33 std::cregex_iterator cit; local
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/iterators/regex_iterator/ctors/wchar_t/
H A Ddefault.cc33 std::wcregex_iterator cit; local
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/iterators/regex_token_iterator/ctors/char/
H A Ddefault.cc33 std::cregex_token_iterator cit; local
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/iterators/regex_token_iterator/ctors/wchar_t/
H A Ddefault.cc33 std::wcregex_token_iterator cit; local
/haiku-buildtools/gcc/libstdc++-v3/testsuite/ext/slist/
H A D23781_neg.cc28 __gnu_cxx::slist<int>::const_iterator cit = NULL; // { dg-error "conversion" } variable
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/6_containers/unordered_multiset/requirements/
H A Diterator_neg.cc31 Mset::const_iterator cit = ms.begin(); local
32 *cit = 0; // { dg-error "read-only" }
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/6_containers/unordered_set/requirements/
H A Diterator_neg.cc31 Set::const_iterator cit = s.begin(); local
32 *cit = 0; // { dg-error "read-only" }
H A Diterators_default_constructor.cc28 std::tr1::unordered_set<int>::const_iterator cit; local
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/algorithms/regex_match/ecma/wchar_t/
H A D63199.cc52 for (auto cit = regex_vector.cbegin(); cit != regex_vector.cend(); ++cit)
58 regex_match_debug(it1, it2, current_token_match, *cit);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/unordered_set/debug/
H A Ddebug_functions.cc35 auto cit = u.begin(); local
36 VERIFY( __check_dereferenceable(cit) );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/24_iterators/random_access_iterator/
H A Dstring_vector_iterators.cc585 std::string::const_iterator cit = s.begin(); local
587 return it - cit;
/haiku-buildtools/binutils/gas/testsuite/gas/s390/
H A Dzarch-z10.s140 cit %r6,-30000,10

Completed in 209 milliseconds