Lines Matching refs:I
365 for (GoodIter I = begin; I < end; ++I) in test_with_random_access_iterator() local
366 ++I; in test_with_random_access_iterator()
369 for (GoodIter &I = begin; I < end; ++I) in test_with_random_access_iterator() local
370 ++I; in test_with_random_access_iterator()
372 for (GoodIter I = begin; I >= end; --I) in test_with_random_access_iterator() local
373 ++I; in test_with_random_access_iterator()
376 for (GoodIter I(begin); I < end; ++I) in test_with_random_access_iterator() local
377 ++I; in test_with_random_access_iterator()
380 for (GoodIter I(nullptr); I < end; ++I) in test_with_random_access_iterator() local
381 ++I; in test_with_random_access_iterator()
384 for (GoodIter I(0); I < end; ++I) in test_with_random_access_iterator() local
385 ++I; in test_with_random_access_iterator()
388 for (GoodIter I(1,2); I < end; ++I) in test_with_random_access_iterator() local
389 ++I; in test_with_random_access_iterator()
405 for (GoodIter I = begin; I - I; ++I) in test_with_random_access_iterator() local
406 ++I; in test_with_random_access_iterator()
409 for (GoodIter I = begin; begin < end; ++I) in test_with_random_access_iterator() local
410 ++I; in test_with_random_access_iterator()
413 for (GoodIter I = begin; !I; ++I) in test_with_random_access_iterator() local
414 ++I; in test_with_random_access_iterator()
418 for (GoodIter I = begin; I >= end; I = I + 1) in test_with_random_access_iterator() local
419 ++I; in test_with_random_access_iterator()
421 for (GoodIter I = begin; I >= end; I = I - 1) in test_with_random_access_iterator() local
422 ++I; in test_with_random_access_iterator()
425 for (GoodIter I = begin; I >= end; I = -I) in test_with_random_access_iterator() local
426 ++I; in test_with_random_access_iterator()
430 for (GoodIter I = begin; I >= end; I = 2 + I) in test_with_random_access_iterator() local
431 ++I; in test_with_random_access_iterator()
434 for (GoodIter I = begin; I >= end; I = 2 - I) in test_with_random_access_iterator() local
435 ++I; in test_with_random_access_iterator()
437 for (Iter0 I = begin0; I < end0; ++I) in test_with_random_access_iterator() local
438 ++I; in test_with_random_access_iterator()
443 for (Iter0 I; I < end0; ++I) in test_with_random_access_iterator() local
444 ++I; in test_with_random_access_iterator()
450 for (Iter1 I = begin1; I < end1; ++I) in test_with_random_access_iterator() local
451 ++I; in test_with_random_access_iterator()
455 for (Iter1 I = begin1; I >= end1; ++I) in test_with_random_access_iterator() local
456 ++I; in test_with_random_access_iterator()
463 for (Iter1 I; I < end1; ++I) { in test_with_random_access_iterator() local
475 for (IT I = begin; I < end; I = I + ST) { in dotest_lt() local
476 ++I; in dotest_lt()
481 for (IT I = begin; I <= end; I += ST) { in dotest_lt() local
482 ++I; in dotest_lt()
485 for (IT I = begin; I < end; ++I) { in dotest_lt() local
486 ++I; in dotest_lt()
498 for (IT I = begin; I >= end; I = I + ST) { in dotest_gt() local
499 ++I; in dotest_gt()
504 for (IT I = begin; I >= end; I += ST) { in dotest_gt() local
505 ++I; in dotest_gt()
511 for (IT I = begin; I >= end; ++I) { in dotest_gt() local
512 ++I; in dotest_gt()
516 for (IT I = begin; I < end; I+=TC<int,ST>::step()) { in dotest_gt() local
517 ++I; in dotest_gt()