Lines Matching refs:test_bounded_ptr
31 test_bounded_ptr<QualT> const ptr(array.end(), array.begin(), array.end()); in tests()
34 test_bounded_ptr<QualT> res = ptr - static_cast<std::ptrdiff_t>(0); in tests()
38 test_bounded_ptr<QualT> res = ptr - 1; in tests()
42 test_bounded_ptr<QualT> res = ptr - 2; in tests()
46 test_bounded_ptr<QualT> res = ptr - 3; in tests()
50 test_bounded_ptr<QualT> res = ptr - 4; in tests()
54 test_bounded_ptr<QualT> res = ptr - 5; in tests()
65 test_bounded_ptr<QualT> const ptr(array.begin(), array.begin(), array.end()); in tests()
68 test_bounded_ptr<QualT> res = ptr - static_cast<std::ptrdiff_t>(0); in tests()
72 test_bounded_ptr<QualT> res = ptr - -1; in tests()
76 test_bounded_ptr<QualT> res = ptr - -2; in tests()
80 test_bounded_ptr<QualT> res = ptr - -3; in tests()
84 test_bounded_ptr<QualT> res = ptr - -4; in tests()
88 test_bounded_ptr<QualT> res = ptr - -5; in tests()
95 test_bounded_ptr<QualT> const ptr(array.begin() + 4, array.begin(), array.end()); in tests()