Home
last modified time | relevance | path

Searched refs:test_bounded_array (Results 1 – 10 of 10) sorted by relevance

/xnu-11215/tests/bounded_array_src/
H A Dctor.default.cpp28 test_bounded_array<T, 10> array; in tests()
36 test_bounded_array<T, 10> array{}; in tests()
44 test_bounded_array<T, 10> array = {}; in tests()
52 test_bounded_array<T, 10> array = test_bounded_array<T, 10>(); in tests()
62 test_bounded_array<T, 0> array; in tests()
H A Dbegin_end.cpp23 test_bounded_array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests()
30 test_bounded_array<T, 5> const array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests()
39 test_bounded_array<T, 0> array = {}; in tests()
46 test_bounded_array<T, 0> const array = {}; in tests()
55 using A = test_bounded_array<T, 10>; in tests()
H A Ddata.cpp24 test_bounded_array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests()
34 test_bounded_array<T, 5> const array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests()
45 test_bounded_array<T, 0> array = {}; in tests()
50 test_bounded_array<T, 0> const array = {}; in tests()
H A Dctor.aggregate_init.cpp31 test_bounded_array<T, 5> array = {T(1), T(2), T(3), T(4), T(5)}; in tests()
41 test_bounded_array<T, 5> array{T(1), T(2), T(3), T(4), T(5)}; in tests()
52 test_bounded_array<T, 0> array = {}; in tests()
H A Dsize.cpp18 test_bounded_array<T, 5> const array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests()
23 test_bounded_array<T, 0> const array = {}; in tests()
H A Doperator.subscript.cpp24 test_bounded_array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests()
39 test_bounded_array<T, 5> const array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests()
H A Dfor_loop.cpp17 test_bounded_array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests()
H A Dtest_policy.h19 using test_bounded_array = libkern::bounded_array<T, N, test_policy>; variable
/xnu-11215/tests/bounded_array_ref_src/
H A Dctor.bounded_array.cpp24 test_bounded_array<T, 5> array = {T{0}, T{1}, T{2}, T{3}, T{4}}; in tests()
36 test_bounded_array<T, 1> array = {T{11}}; in tests()
44 test_bounded_array<T, 0> array = {}; in tests()
52 test_bounded_array<T, 1> array = {T{11}}; in tests()
58 test_bounded_array<T, 1> array = {T{11}}; in tests()
H A Dtest_policy.h45 using test_bounded_array = libkern::bounded_array<T, N, test_policy>; variable