Lines Matching refs:array
40 typedef std::array<double, 3> Array; in tests()
41 Array array = {1.1, 2.2, 3.3}; in tests() local
42 Array copy = array; in tests()
43 copy = array; in tests()
48 typedef std::array<double const, 3> Array; in tests()
49 Array array = {1.1, 2.2, 3.3}; in tests() local
50 Array copy = array; (void)copy; in tests()
55 typedef std::array<double, 0> Array; in tests()
56 Array array = {}; in tests() local
57 Array copy = array; in tests()
58 copy = array; in tests()
64 typedef std::array<double const, 0> Array; in tests()
65 Array array = {}; in tests() local
66 Array copy = array; (void)copy; in tests()
71 typedef std::array<NoDefault, 0> Array; in tests()
72 Array array = {}; in tests() local
73 Array copy = array; in tests()
74 copy = array; in tests()
79 typedef std::array<NoDefault const, 0> Array; in tests()
80 Array array = {}; in tests() local
81 Array copy = array; (void)copy; in tests()
88 typedef std::array<NonTrivialCopy, 0> Array; in tests()
89 Array array = {}; in tests() local
90 Array copy = array; in tests()
91 copy = array; in tests()
95 typedef std::array<NonTrivialCopy, 1> Array; in tests()
96 Array array = {}; in tests() local
97 Array copy = array; in tests()
98 copy = array; in tests()
102 typedef std::array<NonTrivialCopy, 2> Array; in tests()
103 Array array = {}; in tests() local
104 Array copy = array; in tests()
105 copy = array; in tests()