Home | History | Annotate | Download | only in unit

Lines Matching full:begin

81     int n = count(i.begin(), i.end(), 2);
85 count(i.begin(), i.end(), 2, n);
99 sort(years.begin(), years.end());
111 sort(years.begin(), years.end()); // <-- changed!
130 slist<int>::iterator slit = search_n(slint.begin(), slint.end(), 2, 2);
140 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 3);
150 deque<int>::iterator dit = search_n(dint.begin(), dint.end(), 4, 4);
163 slist<int>::iterator slit = search_n(slint.begin(), slint.end(), 2, 1, greater<int>());
173 list<int>::iterator lit = search_n(lint.begin(), lint.end(), 3, 2, greater<int>());
183 deque<int>::iterator dit = search_n(dint.begin(), dint.end(), 4, 3, greater<int>());
230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end());
260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end());
272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end());
286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars));
359 map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), ValueFinder());