Lines Matching refs:test_bounded_ptr
33 test_bounded_ptr<QualT> const ptr(array.begin(), array.begin(), array.end()); in tests()
36 test_bounded_ptr<QualT> res = ptr + 0; in tests()
40 test_bounded_ptr<QualT> res = ptr + 1; in tests()
44 test_bounded_ptr<QualT> res = ptr + 2; in tests()
48 test_bounded_ptr<QualT> res = ptr + 3; in tests()
52 test_bounded_ptr<QualT> res = ptr + 4; in tests()
56 test_bounded_ptr<QualT> res = ptr + 5; in tests()
67 test_bounded_ptr<QualT> const ptr(array.end(), array.begin(), array.end()); in tests()
70 test_bounded_ptr<QualT> res = ptr + 0; in tests()
74 test_bounded_ptr<QualT> res = ptr + -1; in tests()
78 test_bounded_ptr<QualT> res = ptr + -2; in tests()
82 test_bounded_ptr<QualT> res = ptr + -3; in tests()
86 test_bounded_ptr<QualT> res = ptr + -4; in tests()
90 test_bounded_ptr<QualT> res = ptr + -5; in tests()
97 test_bounded_ptr<QualT> const ptr(array.begin() + 1, array.begin(), array.end()); in tests()
105 test_bounded_ptr<QualT> const ptr(array.begin(), array.begin(), array.end()); in tests()
106 test_bounded_ptr<QualT> res = 0 + ptr; in tests()
110 test_bounded_ptr<QualT> const ptr(array.begin(), array.begin(), array.end()); in tests()
111 test_bounded_ptr<QualT> res = 3 + ptr; in tests()
115 test_bounded_ptr<QualT> const ptr(array.begin() + 3, array.begin(), array.end()); in tests()
116 test_bounded_ptr<QualT> res = -2 + ptr; in tests()