Lines Matching refs:dest
71 ProjectionSpace dest; in TEST() local
72 dest.setContent(Rect(10, 20, 30, 20)); in TEST()
73 dest.setBounds(source.getBounds()); in TEST()
75 const auto transform = source.getTransform(dest); in TEST()
76 EXPECT_EQ(transform.transform(source.getContent()), dest.getContent()); in TEST()
84 ProjectionSpace dest; in TEST() local
85 dest.setContent(Rect(0, 0, 40, 30)); in TEST()
86 dest.setBounds(source.getBounds()); in TEST()
88 const auto transform = source.getTransform(dest); in TEST()
89 EXPECT_EQ(transform.transform(source.getContent()), dest.getContent()); in TEST()
100 void testTransform(const ProjectionSpace& source, const ProjectionSpace& dest) { in testTransform() argument
101 const auto transform = source.getTransform(dest); in testTransform()
102 EXPECT_EQ(transform.transform(source.getContent()), dest.getContent()) in testTransform()
104 << " onto " << to_string(dest); in testTransform()
117 const auto destStrip = getSideStrip(dest.getContent(), dest.getOrientation()); in testTransform()
124 << to_string(dest); in testTransform()
131 ProjectionSpace dest; in TEST() local
132 dest.setBounds(ui::Size(862, 546)); in TEST()
133 dest.setContent(Rect(43, 52, 432, 213)); in TEST()
138 dest.setOrientation(ui::Rotation(destRot)); in TEST()
139 testTransform(source, dest); in TEST()