Lines Matching refs:array
70 std::array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests() local
78 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
79 TQual* b = array.begin(); in tests()
87 test_bounded_ptr<TQual> const a(array.begin() + 1, array.begin(), array.end()); in tests()
88 TQual* b = array.begin() + 1; in tests()
96 test_bounded_ptr<TQual> const a(array.begin(), array.begin(), array.end()); in tests()
97 TQual* b = array.begin() + 2; in tests()
105 test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end()); in tests()
106 TQual* b = array.end(); in tests()
114 test_bounded_ptr<TQual> const a(array.begin() + 2, array.begin(), array.begin() + 3); in tests()
115 TQual* b = array.begin() + 4; in tests()
125 test_bounded_ptr<TQual> const a(array.begin(), array.begin() + 2, array.end()); in tests()
126 TQual* b = array.begin(); in tests()
134 test_bounded_ptr<TQual> const a(array.end() - 1, array.begin(), array.end() - 2); in tests()
135 TQual* b = array.end() - 1; in tests()
143 test_bounded_ptr<TQual> const a(array.end(), array.begin(), array.end() - 1); in tests()
144 TQual* b = array.end(); in tests()
152 test_bounded_ptr<TQual> const a(array.end() - 1, array.begin(), array.end() - 2); in tests()
153 TQual* b = array.end(); in tests()
164 test_bounded_ptr<TQual> a(array.end() - 1, array.begin(), array.end() - 2); in tests()
170 TQual* b = array.begin(); in tests()
182 std::array<Derived, 5> array = {Derived{0}, Derived{1}, Derived{2}, Derived{3}, Derived{4}}; in tests_convert() local
185 test_bounded_ptr<Derived> const a(array.begin() + 1, array.begin(), array.end() - 1); in tests_convert()
186 Related* b = array.begin(); in tests_convert()
190 test_bounded_ptr<Related> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert()
191 Derived* b = array.begin() + 1; in tests_convert()
197 test_bounded_ptr<Related> const a(array.begin(), array.begin(), array.end() - 1); in tests_convert()
198 void* b = array.begin() + 1; in tests_convert()