Lines Matching refs:array
24 test_bounded_array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests() local
25 test_bounded_array_ref<T> view(array); in tests()
26 CHECK(view.data() == array.data()); in tests()
36 test_bounded_array<T, 1> array = {T{11}}; in tests() local
37 test_bounded_array_ref<T> view(array); in tests()
38 CHECK(view.data() == array.data()); in tests()
44 test_bounded_array<T, 0> array = {}; in tests() local
45 test_bounded_array_ref<T> view(array); in tests()
46 CHECK(view.data() == array.data()); in tests()
52 test_bounded_array<T, 1> array = {T{11}}; in tests() local
53 test_bounded_array_ref<T> view = array; in tests()
54 CHECK(view.data() == array.data()); in tests()
58 test_bounded_array<T, 1> array = {T{11}}; in tests() local
59 auto check = [&array](test_bounded_array_ref<T> view) { in tests()
60 CHECK(view.data() == array.data()); in tests()
63 check(array); in tests()