Home
last modified time | relevance | path

Searched refs:it1 (Results 1 – 1 of 1) sorted by relevance

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
Dalgorithm.hpp138 BidirectionalIterator1 it1 = last1; in find_last_of() local
139 while( --it1 != first1 && std::find( first2, last2, *it1 ) == last2 ) {} in find_last_of()
141 return it1 == first1 && std::find( first2, last2, *it1 ) == last2 ? last1 : it1; in find_last_of()
163 BidirectionalIterator1 it1 = last1; in find_last_of() local
164 … while( --it1 != first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) == last2 ) {} in find_last_of()
166 …return it1 == first1 && std::find_if( first2, last2, std::bind1st( pred, *it1 ) ) == last2 ? last1… in find_last_of()
185 BidirectionalIterator1 it1 = last1; in find_last_not_of() local
186 while( --it1 != first1 && std::find( first2, last2, *it1 ) != last2 ) {} in find_last_not_of()
188 return it1 == first1 && std::find( first2, last2, *it1 ) != last2 ? last1 : it1; in find_last_not_of()
210 BidirectionalIterator1 it1 = last1; in find_last_not_of() local
[all …]