Lines Matching refs:test_bounded_ptr

59 		test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end());  in tests()
60 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests()
64 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
65 test_bounded_ptr<TQual> const b(array.begin() + 1, array.begin(), array.end()); in tests()
69 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
70 test_bounded_ptr<TQual> const b(array.begin() + 2, array.begin(), array.end()); in tests()
74 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
75 test_bounded_ptr<TQual> const b(array.end(), array.begin(), array.end()); in tests()
79 test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end()); in tests()
80 test_bounded_ptr<TQual> const b(array.end(), array.begin(), array.end()); in tests()
86 test_bounded_ptr<TQual> const a; in tests()
87 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests()
91 test_bounded_ptr<TQual> const a; in tests()
92 test_bounded_ptr<TQual> const b; in tests()
99 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests()
100 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests()
105 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests()
106 test_bounded_ptr<TQual> const b(array.begin() + 2, array.begin(), array.end()); in tests()
111 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.begin() + 1); in tests()
112 test_bounded_ptr<TQual> const b(array.begin(), array.begin() + 2, array.end()); in tests()
117 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.begin() + 1); in tests()
118 test_bounded_ptr<TQual> const b(array.begin() + 3, array.begin() + 2, array.end()); in tests()
138 test_bounded_ptr<Derived> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert()
139 test_bounded_ptr<Related> const b(array.begin(), array.begin(), array.end() - 1); in tests_convert()