Searched refs:it (Results 1 - 25 of 1370) sorted by relevance

1234567891011>>

/haiku-buildtools/gcc/libstdc++-v3/testsuite/24_iterators/move_iterator/
H A Dgreedy_ops.cc6 // software; you can redistribute it and/or modify it under the
11 // This library is distributed in the hope that it will be useful,
27 iterator_type it(nullptr);
29 it == it; local
30 it != it; local
31 it < it;
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/24_iterators/reverse_iterator/
H A Dgreedy_ops.cc5 // software; you can redistribute it and/or modify it under the
10 // This library is distributed in the hope that it will be useful,
26 iterator_type it; local
28 it == it; local
29 it != it; local
30 it < it;
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/24_iterators/normal_iterator/
H A Dgreedy_ops.cc5 // software; you can redistribute it and/or modify it under the
10 // This library is distributed in the hope that it will be useful,
35 iterator_type it(0);
37 it == it; local
38 it != it; local
39 it < it;
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/tree-ssa/
H A Dloop-40.c4 int mymax2(int *it, int *end) argument
6 int max = *it;
7 while (++it != end)
8 if (*it > max)
9 max = *it;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/iterators/regex_iterator/
H A Dtypedefs.cc10 // software; you can redistribute it and/or modify it under the
15 // This library is distributed in the hope that it will be useful,
32 typedef std::regex_iterator<char*> it; typedef
34 typedef it::regex_type regex_type;
35 typedef it::value_type value_type;
36 typedef it::difference_type difference_type;
37 typedef it::pointer pointer;
38 typedef it::reference reference;
39 typedef it
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/iterators/regex_token_iterator/
H A Dtypedefs.cc10 // software; you can redistribute it and/or modify it under the
15 // This library is distributed in the hope that it will be useful,
32 typedef std::regex_token_iterator<char*> it; typedef
34 typedef it::regex_type regex_type;
35 typedef it::value_type value_type;
36 typedef it::difference_type difference_type;
37 typedef it::pointer pointer;
38 typedef it::reference reference;
39 typedef it
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dforall_6.f907 integer :: it(2,2) variable
9 it(:,:) = reshape ((/1,2,3,4/), (/2,2/))
12 it(i, j) = 0
16 ! print '(4i2)', it
17 if (any (it .ne. reshape ((/1, 0, 0, 4/), (/2, 2/)))) call abort ()
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/other/
H A Ddump-ada-spec-2.C6 int it; member in struct:S
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/deque/types/
H A D1.cc6 // software; you can redistribute it and/or modify it under the
11 // This library is distributed in the hope that it will be useful,
41 std::deque<greedy_ops::X>::iterator it; local
42 it == it; local
43 it != it; local
44 it < it;
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/iterators/regex_iterator/char/
H A D64140.cc7 // software; you can redistribute it and/or modify it under the
12 // This library is distributed in the hope that it will be useful,
34 auto it = std::sregex_iterator(s.begin(), s.end(), e); local
36 VERIFY(it != end);
37 VERIFY(!it->prefix().matched);
38 ++it;
39 VERIFY(it != end);
40 VERIFY(it->prefix().matched);
41 ++it;
[all...]
H A Dstring_01.cc9 // software; you can redistribute it and/or modify it under the
14 // This library is distributed in the hope that it will be useful,
37 for (std::regex_iterator<const char*> it(s, *(&s+1)-1, re), e;
38 it != e; ++it)
40 VERIFY( it->size() == 1 );
41 VERIFY( std::string((*it)[0].first, (*it)[0].second) == "asdf" );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/modifiers/
H A D6.cc6 // software; you can redistribute it and/or modify it under the
11 // This library is distributed in the hope that it will be useful,
33 auto it = fl1.begin(); local
35 VERIFY( *it == 4 );
37 ++it;
39 VERIFY( *it == 5 );
43 it = fl3.begin();
45 VERIFY( *it == 2 );
47 ++it;
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/deque/modifiers/erase/
H A D50529.cc8 // software; you can redistribute it and/or modify it under the
13 // This library is distributed in the hope that it will be useful,
30 for (auto it = d.begin(); it != d.end(); ++it)
31 d.erase(it, it);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/vector/modifiers/erase/
H A D50529.cc8 // software; you can redistribute it and/or modify it under the
13 // This library is distributed in the hope that it will be useful,
30 for (auto it = v.begin(); it != v.end(); ++it)
31 v.erase(it, it);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/ext/pb_ds/example/
H A Dpriority_queue_split_join.cc6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
69 __gnu_pbds::priority_queue<int>::const_iterator it; local
70 for (it = even_p.begin(); it != even_p.end(); ++it)
71 cout <<* it << endl;
78 for (it = odd_p.begin(); it !
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/24_iterators/back_insert_iterator/
H A D2.cc6 // software; you can redistribute it and/or modify it under the
11 // This library is distributed in the hope that it will be useful,
29 iterator_type it = std::back_inserter(li); local
30 it = it; // Suppress unused warning.
/haiku-buildtools/gcc/libstdc++-v3/testsuite/24_iterators/front_insert_iterator/
H A D2.cc6 // software; you can redistribute it and/or modify it under the
11 // This library is distributed in the hope that it will be useful,
29 iterator_type it = std::front_inserter(li); local
30 it = it; // Suppress unused warning.
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/debug/
H A Derase_after9_neg.cc8 // software; you can redistribute it and/or modify it under the
13 // This library is distributed in the hope that it will be useful,
29 auto it = fl1.begin(); local
30 ++it;
31 fl1.erase_after(it, fl1.begin());
/haiku-buildtools/gcc/libstdc++-v3/testsuite/28_regex/iterators/regex_iterator/wchar_t/
H A Dstring_01.cc9 // software; you can redistribute it and/or modify it under the
14 // This library is distributed in the hope that it will be useful,
37 for (std::regex_iterator<const wchar_t*> it(s, *(&s+1)-1, re), e;
38 it != e; ++it)
40 VERIFY( it->size() == 1 );
41 VERIFY( std::wstring((*it)[0].first, (*it)[0].second) == L"asdf" );
/haiku-buildtools/binutils/gas/testsuite/gas/arm/
H A Dthumb2_bcond.s7 it ne
9 it cc
11 it cs
13 it lt
15 it eq
17 it gt
19 it lt
21 it eq
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/list/operations/
H A D42352.cc6 // software; you can redistribute it and/or modify it under the
11 // This library is distributed in the hope that it will be useful,
32 for (auto it = l.begin(); it != l.end(); ++it)
35 VERIFY( *it == nn++ );
54 for (auto it = l.begin(); it != l.end(); ++it)
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/lambda/
H A Dlambda-defarg5.C16 , void (*)(T) = [](T it)
18 auto copy = T{it}; // copy constructible
19 copy = it; // copy assignable
21 ++it; // incrementable
/haiku-buildtools/gcc/libstdc++-v3/include/ext/pb_ds/detail/list_update_map_/
H A Ddebug_fn_imps.hpp6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
49 for (const_iterator it = begin(); it != end(); ++it)
51 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/forward_list/cons/
H A Dcons_size.cc8 // software; you can redistribute it and/or modify it under the
13 // This library is distributed in the hope that it will be useful,
32 for(auto it = fl.begin(); it != fl.end(); ++it)
33 VERIFY( *it == -1 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/23_containers/vector/cons/
H A Dcons_size.cc8 // software; you can redistribute it and/or modify it under the
13 // This library is distributed in the hope that it will be useful,
32 for(auto it = v.begin(); it != v.end(); ++it)
33 VERIFY( *it == -1 );

Completed in 88 milliseconds

1234567891011>>