• Home
  • Raw
  • Download

Lines Matching refs:intv

223     vector<int> intv;  in find_first_of_test()  local
224 intv.push_back(0); in find_first_of_test()
225 intv.push_back(1); in find_first_of_test()
226 intv.push_back(2); in find_first_of_test()
227 intv.push_back(3); in find_first_of_test()
230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); in find_first_of_test()
231 CPPUNIT_ASSERT( first != intv.end() ); in find_first_of_test()
235 vector<int> intv; in find_first_of_test() local
236 intv.push_back(3); in find_first_of_test()
237 intv.push_back(2); in find_first_of_test()
238 intv.push_back(1); in find_first_of_test()
239 intv.push_back(0); in find_first_of_test()
242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); in find_first_of_test()
243 CPPUNIT_ASSERT( first != intv.end() ); in find_first_of_test()
253 vector<int> intv; in find_first_of_test() local
254 intv.push_back(0); in find_first_of_test()
255 intv.push_back(1); in find_first_of_test()
256 intv.push_back(2); in find_first_of_test()
257 intv.push_back(3); in find_first_of_test()
260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); in find_first_of_test()
261 CPPUNIT_ASSERT( first != intv.end() ); in find_first_of_test()
265 vector<int> intv; in find_first_of_test() local
266 intv.push_back(3); in find_first_of_test()
267 intv.push_back(2); in find_first_of_test()
268 intv.push_back(1); in find_first_of_test()
269 intv.push_back(0); in find_first_of_test()
272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); in find_first_of_test()
273 CPPUNIT_ASSERT( first != intv.end() ); in find_first_of_test()
279 vector<int> intv; in find_first_of_test() local
280 intv.push_back(0); in find_first_of_test()
281 intv.push_back(1); in find_first_of_test()
282 intv.push_back(2); in find_first_of_test()
283 intv.push_back(3); in find_first_of_test()
286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test()
287 CPPUNIT_ASSERT( first != intv.end() ); in find_first_of_test()
293 vector<int> intv; in find_first_of_test() local
294 intv.push_back(-10); in find_first_of_test()
295 intv.push_back(1029); in find_first_of_test()
296 intv.push_back(255); in find_first_of_test()
297 intv.push_back(4); in find_first_of_test()
300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test()
301 CPPUNIT_ASSERT( first != intv.end() ); in find_first_of_test()
307 vector<int> intv; in find_first_of_test() local
308 intv.push_back(-10); in find_first_of_test()
309 intv.push_back(1029); in find_first_of_test()
310 intv.push_back(-2035); in find_first_of_test()
311 intv.push_back(-101); in find_first_of_test()
312 intv.push_back(4); in find_first_of_test()
315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test()
316 CPPUNIT_ASSERT( first != intv.end() ); in find_first_of_test()
322 vector<MyIntComparable> intv; in find_first_of_test() local
323 intv.push_back(0); in find_first_of_test()
324 intv.push_back(1); in find_first_of_test()
325 intv.push_back(2); in find_first_of_test()
326 intv.push_back(3); in find_first_of_test()
329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); in find_first_of_test()
330 CPPUNIT_ASSERT( first != intv.end() ); in find_first_of_test()