Lines Matching refs:last

77 … OFForEach(InputIterator_type, Function_type, first, last, f) STD_NAMESPACE for_each((first), (las…  argument
78 #define OFFind(InputIterator_type, T_type, first, last, value) STD_NAMESPACE find((first), (last), … argument
79 …OFFindIf(InputIterator_type, Predicate_type, first, last, pred) STD_NAMESPACE find_if((first), (la… argument
80 #define OFAdjacentFind(ForwardIterator_type, first, last) STD_NAMESPACE adjacent_find((first), (las… argument
81 …rwardIterator_type, BinaryPredicate_type, first, last, pred) STD_NAMESPACE adjacent_find((first), … argument
86 #define OFForEach(InputIterator_type, Function_type, first, last, f) OF_ForEach((first), (last), (f… argument
88 #define OFFind(InputIterator_type, T_type, first, last, value) OF_Find((first), (last), (value)) argument
90 #define OFFindIf(InputIterator_type, Predicate_type, first, last, pred) OF_FindIf((first), (last), … argument
92 #define OFAdjacentFind(ForwardIterator_type, first, last) OF_AdjacentFind((first), (last)) argument
94 …red(ForwardIterator_type, BinaryPredicate_type, first, last, pred) OF_AdjacentFind((first), (last)… argument
98 …ator_type, Function_type, first, last, f) OF_ForEachClass<InputIterator_type, Function_type>::OF_F… argument
100 …nd(InputIterator_type, T_type, first, last, value) OF_FindClass<InputIterator_type, T_type>::OF_Fi… argument
102 …or_type, Predicate_type, first, last, pred) OF_FindIfClass<InputIterator_type, Predicate_type>::OF… argument
104 …Find(ForwardIterator_type, first, last) OF_AdjacentFindClass<ForwardIterator_type, int>::OF_Adjace… argument
106 …dicate_type, first, last, pred) OF_AdjacentFindPredClass<ForwardIterator_type, BinaryPredicate_typ… argument
119 Function OF_ForEach(InputIterator first, InputIterator last, Function f) in OF_ForEach() argument
121 while (first != last) in OF_ForEach()
139 InputIterator OF_Find(InputIterator first, InputIterator last, const T & value) in OF_Find() argument
141 while (first != last && *first != value) ++ first; in OF_Find()
156 InputIterator OF_FindIf(InputIterator first, InputIterator last, in OF_FindIf() argument
159 while (first != last && !pred(*first)) ++first; in OF_FindIf()
173 ForwardIterator OF_AdjacentFind(ForwardIterator first, ForwardIterator last) in OF_AdjacentFind() argument
175 if (first == last) return last; in OF_AdjacentFind()
177 while (++next != last) in OF_AdjacentFind()
182 return last; in OF_AdjacentFind()
195 ForwardIterator OF_AdjacentFind(ForwardIterator first, ForwardIterator last, in OF_AdjacentFind() argument
198 if (first == last) return last; in OF_AdjacentFind()
200 while(++next != last) in OF_AdjacentFind()
202 if (pred(*first, *last)) return first; in OF_AdjacentFind()
205 return last; in OF_AdjacentFind()