Lines Matching refs:array

24 	std::array<Stored, 5> array = {Stored{0}, Stored{1}, Stored{2}, Stored{3}, Stored{4}};  in tests()  local
28 test_bounded_ptr<Left> const a(array.begin(), array.begin(), array.end()); in tests()
29 test_bounded_ptr<Right> const b(array.begin(), array.begin(), array.end()); in tests()
34 test_bounded_ptr<Left> const a(array.begin() + 1, array.begin(), array.end()); in tests()
35 test_bounded_ptr<Right> const b(array.begin(), array.begin(), array.end()); in tests()
40 test_bounded_ptr<Left> const a(array.begin() + 2, array.begin(), array.end()); in tests()
41 test_bounded_ptr<Right> const b(array.begin(), array.begin(), array.end()); in tests()
46 test_bounded_ptr<Left> const a(array.begin() + 3, array.begin(), array.end()); in tests()
47 test_bounded_ptr<Right> const b(array.begin(), array.begin(), array.end()); in tests()
52 test_bounded_ptr<Left> const a(array.begin() + 4, array.begin(), array.end()); in tests()
53 test_bounded_ptr<Right> const b(array.begin(), array.begin(), array.end()); in tests()
58 test_bounded_ptr<Left> const a(array.end(), array.begin(), array.end()); in tests()
59 test_bounded_ptr<Right> const b(array.begin(), array.begin(), array.end()); in tests()
66 test_bounded_ptr<Left> const a(array.begin(), array.begin(), array.end()); in tests()
67 test_bounded_ptr<Right> const b(array.begin() + 1, array.begin(), array.end()); in tests()
72 test_bounded_ptr<Left> const a(array.begin(), array.begin(), array.end()); in tests()
73 test_bounded_ptr<Right> const b(array.begin() + 2, array.begin(), array.end()); in tests()
78 test_bounded_ptr<Left> const a(array.begin(), array.begin(), array.end()); in tests()
79 test_bounded_ptr<Right> const b(array.begin() + 3, array.begin(), array.end()); in tests()
84 test_bounded_ptr<Left> const a(array.begin(), array.begin(), array.end()); in tests()
85 test_bounded_ptr<Right> const b(array.begin() + 4, array.begin(), array.end()); in tests()
90 test_bounded_ptr<Left> const a(array.begin(), array.begin(), array.end()); in tests()
91 test_bounded_ptr<Right> const b(array.begin() + 5, array.begin(), array.end()); in tests()
98 test_bounded_ptr<Left> const a(array.begin() + 2, array.begin() + 1, array.end() - 1); in tests()
99 test_bounded_ptr<Right> const b(array.begin() + 4, array.begin() + 3, array.end()); in tests()
106 test_bounded_ptr<Left> const a(array.begin() + 2, array.begin() + 1, array.end() - 1); in tests()
107 Right* b = array.begin() + 4; in tests()
111 Left* a = array.begin() + 4; in tests()
112 test_bounded_ptr<Right> const b(array.begin() + 2, array.begin() + 1, array.end() - 1); in tests()