Lines Matching full:first
41 Holder<Incomplete> **first = t.data; in all_the_algorithms() local
50 (void)std::adjacent_find(first, last); in all_the_algorithms()
51 (void)std::adjacent_find(first, last, std::equal_to<void*>()); in all_the_algorithms()
53 (void)std::all_of(first, last, UnaryTrue()); in all_the_algorithms()
54 (void)std::any_of(first, last, UnaryTrue()); in all_the_algorithms()
56 (void)std::binary_search(first, last, value); in all_the_algorithms()
57 (void)std::binary_search(first, last, value, std::less<void*>()); in all_the_algorithms()
62 (void)std::copy(first, last, first2); in all_the_algorithms()
63 (void)std::copy_backward(first, last, last2); in all_the_algorithms()
64 (void)std::copy_n(first, count, first2); in all_the_algorithms()
65 (void)std::count(first, last, value); in all_the_algorithms()
66 (void)std::count_if(first, last, UnaryTrue()); in all_the_algorithms()
67 (void)std::distance(first, last); in all_the_algorithms()
68 (void)std::equal(first, last, first2); in all_the_algorithms()
69 (void)std::equal(first, last, first2, std::equal_to<void*>()); in all_the_algorithms()
71 (void)std::equal(first, last, first2, last2); in all_the_algorithms()
72 (void)std::equal(first, last, first2, last2, std::equal_to<void*>()); in all_the_algorithms()
74 (void)std::equal_range(first, last, value); in all_the_algorithms()
75 (void)std::equal_range(first, last, value, std::less<void*>()); in all_the_algorithms()
76 (void)std::fill(first, last, value); in all_the_algorithms()
77 (void)std::fill_n(first, count, value); in all_the_algorithms()
78 (void)std::find(first, last, value); in all_the_algorithms()
79 (void)std::find_end(first, last, first2, mid2); in all_the_algorithms()
80 (void)std::find_end(first, last, first2, mid2, std::equal_to<void*>()); in all_the_algorithms()
81 (void)std::find_if(first, last, UnaryTrue()); in all_the_algorithms()
82 (void)std::find_if_not(first, last, UnaryTrue()); in all_the_algorithms()
83 (void)std::for_each(first, last, UnaryVoid()); in all_the_algorithms()
85 (void)std::for_each_n(first, count, UnaryVoid()); in all_the_algorithms()
87 (void)std::generate(first, last, NullaryValue()); in all_the_algorithms()
88 (void)std::generate_n(first, count, NullaryValue()); in all_the_algorithms()
89 (void)std::includes(first, last, first2, last2); in all_the_algorithms()
90 (void)std::includes(first, last, first2, last2, std::less<void*>()); in all_the_algorithms()
91 (void)std::is_heap(first, last); in all_the_algorithms()
92 (void)std::is_heap(first, last, std::less<void*>()); in all_the_algorithms()
93 (void)std::is_heap_until(first, last); in all_the_algorithms()
94 (void)std::is_heap_until(first, last, std::less<void*>()); in all_the_algorithms()
95 (void)std::is_partitioned(first, last, UnaryTrue()); in all_the_algorithms()
96 (void)std::is_permutation(first, last, first2); in all_the_algorithms()
97 (void)std::is_permutation(first, last, first2, std::equal_to<void*>()); in all_the_algorithms()
99 (void)std::is_permutation(first, last, first2, last2); in all_the_algorithms()
100 (void)std::is_permutation(first, last, first2, last2, std::equal_to<void*>()); in all_the_algorithms()
102 (void)std::is_sorted(first, last); in all_the_algorithms()
103 (void)std::is_sorted(first, last, std::less<void*>()); in all_the_algorithms()
104 (void)std::is_sorted_until(first, last); in all_the_algorithms()
105 (void)std::is_sorted_until(first, last, std::less<void*>()); in all_the_algorithms()
106 // RELIES ON ADL SWAP (void)std::inplace_merge(first, mid, last); in all_the_algorithms()
107 // RELIES ON ADL SWAP (void)std::inplace_merge(first, mid, last, std::less<void*>()); in all_the_algorithms()
108 // RELIES ON ADL SWAP (void)std::iter_swap(first, mid); in all_the_algorithms()
109 (void)std::lexicographical_compare(first, last, first2, last2); in all_the_algorithms()
110 (void)std::lexicographical_compare(first, last, first2, last2, std::less<void*>()); in all_the_algorithms()
112 (void)std::lexicographical_compare_three_way(first, last, first2, last2); in all_the_algorithms()
113 …(void)std::lexicographical_compare_three_way(first, last, first2, last2, std::compare_three_way()); in all_the_algorithms()
115 (void)std::lower_bound(first, last, value); in all_the_algorithms()
116 (void)std::lower_bound(first, last, value, std::less<void*>()); in all_the_algorithms()
117 (void)std::make_heap(first, last); in all_the_algorithms()
118 (void)std::make_heap(first, last, std::less<void*>()); in all_the_algorithms()
125 (void)std::max_element(first, last); in all_the_algorithms()
126 (void)std::max_element(first, last, std::less<void*>()); in all_the_algorithms()
127 (void)std::merge(first, mid, mid, last, first2); in all_the_algorithms()
128 (void)std::merge(first, mid, mid, last, first2, std::less<void*>()); in all_the_algorithms()
135 (void)std::min_element(first, last); in all_the_algorithms()
136 (void)std::min_element(first, last, std::less<void*>()); in all_the_algorithms()
143 (void)std::minmax_element(first, last); in all_the_algorithms()
144 (void)std::minmax_element(first, last, std::less<void*>()); in all_the_algorithms()
145 (void)std::mismatch(first, last, first2); in all_the_algorithms()
146 (void)std::mismatch(first, last, first2, std::equal_to<void*>()); in all_the_algorithms()
148 (void)std::mismatch(first, last, first2, last2); in all_the_algorithms()
149 (void)std::mismatch(first, last, first2, last2, std::equal_to<void*>()); in all_the_algorithms()
151 (void)std::move(first, last, first2); in all_the_algorithms()
152 (void)std::move_backward(first, last, last2); in all_the_algorithms()
153 // RELIES ON ADL SWAP (void)std::next_permutation(first, last); in all_the_algorithms()
154 // RELIES ON ADL SWAP (void)std::next_permutation(first, last, std::less<void*>()); in all_the_algorithms()
156 (void)std::none_of(first, last, UnaryTrue()); in all_the_algorithms()
158 // RELIES ON ADL SWAP (void)std::nth_element(first, mid, last); in all_the_algorithms()
159 // RELIES ON ADL SWAP (void)std::nth_element(first, mid, last, std::less<void*>()); in all_the_algorithms()
160 // RELIES ON ADL SWAP (void)std::partial_sort(first, mid, last); in all_the_algorithms()
161 // RELIES ON ADL SWAP (void)std::partial_sort(first, mid, last, std::less<void*>()); in all_the_algorithms()
162 (void)std::partial_sort_copy(first, last, first2, mid2); in all_the_algorithms()
163 (void)std::partial_sort_copy(first, last, first2, mid2, std::less<void*>()); in all_the_algorithms()
164 // RELIES ON ADL SWAP (void)std::partition(first, last, UnaryTrue()); in all_the_algorithms()
165 (void)std::partition_copy(first, last, first2, last2, UnaryTrue()); in all_the_algorithms()
166 (void)std::partition_point(first, last, UnaryTrue()); in all_the_algorithms()
167 (void)std::pop_heap(first, last); in all_the_algorithms()
168 (void)std::pop_heap(first, last, std::less<void*>()); in all_the_algorithms()
169 // RELIES ON ADL SWAP (void)std::prev_permutation(first, last); in all_the_algorithms()
170 // RELIES ON ADL SWAP (void)std::prev_permutation(first, last, std::less<void*>()); in all_the_algorithms()
171 (void)std::push_heap(first, last); in all_the_algorithms()
172 (void)std::push_heap(first, last, std::less<void*>()); in all_the_algorithms()
173 (void)std::remove(first, last, value); in all_the_algorithms()
174 (void)std::remove_copy(first, last, first2, value); in all_the_algorithms()
175 (void)std::remove_copy_if(first, last, first2, UnaryTrue()); in all_the_algorithms()
176 (void)std::remove_if(first, last, UnaryTrue()); in all_the_algorithms()
177 (void)std::replace(first, last, value, value); in all_the_algorithms()
178 (void)std::replace_copy(first, last, first2, value, value); in all_the_algorithms()
179 (void)std::replace_copy_if(first, last, first2, UnaryTrue(), value); in all_the_algorithms()
180 (void)std::replace_if(first, last, UnaryTrue(), value); in all_the_algorithms()
181 // RELIES ON ADL SWAP (void)std::reverse(first, last); in all_the_algorithms()
182 (void)std::reverse_copy(first, last, first2); in all_the_algorithms()
183 // RELIES ON ADL SWAP (void)std::rotate(first, mid, last); in all_the_algorithms()
184 (void)std::rotate_copy(first, mid, last, first2); in all_the_algorithms()
185 (void)std::search(first, last, first2, mid2); in all_the_algorithms()
186 (void)std::search(first, last, first2, mid2, std::equal_to<void*>()); in all_the_algorithms()
187 (void)std::search_n(first, last, count, value); in all_the_algorithms()
188 (void)std::search_n(first, last, count, value, std::equal_to<void*>()); in all_the_algorithms()
189 (void)std::set_difference(first, mid, mid, last, first2); in all_the_algorithms()
190 (void)std::set_difference(first, mid, mid, last, first2, std::less<void*>()); in all_the_algorithms()
191 (void)std::set_intersection(first, mid, mid, last, first2); in all_the_algorithms()
192 (void)std::set_intersection(first, mid, mid, last, first2, std::less<void*>()); in all_the_algorithms()
193 (void)std::set_symmetric_difference(first, mid, mid, last, first2); in all_the_algorithms()
194 (void)std::set_symmetric_difference(first, mid, mid, last, first2, std::less<void*>()); in all_the_algorithms()
195 (void)std::set_union(first, mid, mid, last, first2); in all_the_algorithms()
196 (void)std::set_union(first, mid, mid, last, first2, std::less<void*>()); in all_the_algorithms()
198 (void)std::shift_left(first, last, count); in all_the_algorithms()
199 (void)std::shift_right(first, last, count); in all_the_algorithms()
201 // RELIES ON ADL SWAP (void)std::sort(first, last); in all_the_algorithms()
202 // RELIES ON ADL SWAP (void)std::sort(first, last, std::less<void*>()); in all_the_algorithms()
203 (void)std::sort_heap(first, last); in all_the_algorithms()
204 (void)std::sort_heap(first, last, std::less<void*>()); in all_the_algorithms()
205 // RELIES ON ADL SWAP (void)std::stable_partition(first, last, UnaryTrue()); in all_the_algorithms()
206 // RELIES ON ADL SWAP (void)std::stable_sort(first, last); in all_the_algorithms()
207 // RELIES ON ADL SWAP (void)std::stable_sort(first, last, std::less<void*>()); in all_the_algorithms()
208 // RELIES ON ADL SWAP (void)std::swap_ranges(first, last, first2); in all_the_algorithms()
209 (void)std::transform(first, last, first2, UnaryTransform()); in all_the_algorithms()
210 (void)std::transform(first, mid, mid, first2, BinaryTransform()); in all_the_algorithms()
211 (void)std::unique(first, last); in all_the_algorithms()
212 (void)std::unique(first, last, std::equal_to<void*>()); in all_the_algorithms()
213 (void)std::unique_copy(first, last, first2); in all_the_algorithms()
214 (void)std::unique_copy(first, last, first2, std::equal_to<void*>()); in all_the_algorithms()
215 (void)std::upper_bound(first, last, value); in all_the_algorithms()
216 (void)std::upper_bound(first, last, value, std::less<void*>()); in all_the_algorithms()