Lines Matching refs:array
19 test_safe_allocation<T> array(nullptr); in tests() local
20 CHECK(array.data() == nullptr); in tests()
21 CHECK(array.size() == 0); in tests()
22 CHECK(array.begin() == array.end()); in tests()
25 test_safe_allocation<T> array{nullptr}; in tests() local
26 CHECK(array.data() == nullptr); in tests()
27 CHECK(array.size() == 0); in tests()
28 CHECK(array.begin() == array.end()); in tests()
31 test_safe_allocation<T> array = nullptr; in tests() local
32 CHECK(array.data() == nullptr); in tests()
33 CHECK(array.size() == 0); in tests()
34 CHECK(array.begin() == array.end()); in tests()
37 auto f = [](test_safe_allocation<T> array) { in tests() argument
38 CHECK(array.data() == nullptr); in tests()
39 CHECK(array.size() == 0); in tests()
40 CHECK(array.begin() == array.end()); in tests()