Lines Matching refs:test_bounded_ptr

75 		test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end());  in tests()
76 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests()
80 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
81 test_bounded_ptr<TQual> const b(array.begin() + 1, array.begin(), array.end()); in tests()
85 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
86 test_bounded_ptr<TQual> const b(array.begin() + 2, array.begin(), array.end()); in tests()
90 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
91 test_bounded_ptr<TQual> const b(array.end(), array.begin(), array.end()); in tests()
95 test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end()); in tests()
96 test_bounded_ptr<TQual> const b(array.end(), array.begin(), array.end()); in tests()
102 test_bounded_ptr<TQual> const a; in tests()
103 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests()
107 test_bounded_ptr<TQual> const a; in tests()
108 test_bounded_ptr<TQual> const b; in tests()
115 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests()
116 test_bounded_ptr<TQual> const b(array.begin(), array.begin(), array.end()); in tests()
121 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests()
122 test_bounded_ptr<TQual> const b(array.begin() + 2, array.begin(), array.end()); in tests()
127 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.begin() + 1); in tests()
128 test_bounded_ptr<TQual> const b(array.begin(), array.begin() + 2, array.end()); in tests()
133 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.begin() + 1); in tests()
134 test_bounded_ptr<TQual> const b(array.begin() + 3, array.begin() + 2, array.end()); in tests()
154 test_bounded_ptr<Derived> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert()
155 test_bounded_ptr<Related> const b(array.begin(), array.begin(), array.end() - 1); in tests_convert()