Lines Matching refs:TestData
14 struct TestData { struct
19 TestData(s64 F, s64 S) : First(F), Second(S) {} in TestData() function
22 void PrintTo(const TestData &D, std::ostream *OS) { in PrintTo()
27 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST()
29 Array<TestData> Data(A); in TEST()
34 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST()
36 Array<TestData> data(A); in TEST()
37 ASSERT_NE(data.Append(TestData{0, 0}), nullptr); in TEST()
38 ASSERT_NE(data.Append(TestData{1, 1}), nullptr); in TEST()
43 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST()
45 Array<TestData> data(A); in TEST()
46 ASSERT_NE(data.Append(TestData{0, 1}), nullptr); in TEST()
53 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST()
55 Array<TestData> data(A); in TEST()
58 ASSERT_NE(data.Append(TestData{I, I + 1}), nullptr); in TEST()
68 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST()
70 Array<TestData> data(A); in TEST()
77 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST()
79 Array<TestData> data(A); in TEST()
88 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST()
90 Array<TestData> data(A); in TEST()
109 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST()
111 Array<TestData> data(A); in TEST()
130 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST()
132 Array<TestData> Data(A); in TEST()
136 constexpr auto Segment = Array<TestData>::SegmentSize; in TEST()
176 using AllocatorType = typename Array<TestData>::AllocatorType; in TEST()
177 constexpr auto Segment = Array<TestData>::SegmentSize; in TEST()
178 constexpr auto MaxElements = Array<TestData>::ElementsPerSegment; in TEST()
180 Array<TestData> Data(A); in TEST()