Lines Matching refs:array
28 test_bounded_array<T, 10> array; in tests() local
29 CHECK(array.size() == 10); in tests()
30 T* end = array.data() + array.size(); in tests()
31 for (auto it = array.data(); it != end; ++it) { in tests()
36 test_bounded_array<T, 10> array{}; in tests() local
37 CHECK(array.size() == 10); in tests()
38 T* end = array.data() + array.size(); in tests()
39 for (auto it = array.data(); it != end; ++it) { in tests()
44 test_bounded_array<T, 10> array = {}; in tests() local
45 CHECK(array.size() == 10); in tests()
46 T* end = array.data() + array.size(); in tests()
47 for (auto it = array.data(); it != end; ++it) { in tests()
52 test_bounded_array<T, 10> array = test_bounded_array<T, 10>(); in tests() local
53 CHECK(array.size() == 10); in tests()
54 T* end = array.data() + array.size(); in tests()
55 for (auto it = array.data(); it != end; ++it) { in tests()
62 test_bounded_array<T, 0> array; in tests() local
63 CHECK(array.size() == 0); in tests()