Lines Matching refs:outLayout
567 Layout outLayout = doLayoutWithPrecomputedPieces("I", MinikinPaint(fc), pieces); in TEST_F() local
568 EXPECT_EQ(MARKER1, outLayout.mAdvances[0]); in TEST_F()
578 Layout outLayout = doLayoutWithPrecomputedPieces("II", MinikinPaint(fc), pieces); in TEST_F() local
580 EXPECT_NE(MARKER1, outLayout.mAdvances[0]); in TEST_F()
581 EXPECT_NE(MARKER1, outLayout.mAdvances[1]); in TEST_F()
591 Layout outLayout = doLayoutWithPrecomputedPieces("I I", MinikinPaint(fc), pieces); in TEST_F() local
592 EXPECT_EQ(MARKER1, outLayout.mAdvances[0]); in TEST_F()
593 EXPECT_EQ(MARKER1, outLayout.mAdvances[2]); in TEST_F()
608 Layout outLayout = doLayoutWithPrecomputedPieces("I V", MinikinPaint(fc), pieces); in TEST_F() local
609 EXPECT_EQ(MARKER1, outLayout.mAdvances[0]); in TEST_F()
610 EXPECT_EQ(MARKER2, outLayout.mAdvances[2]); in TEST_F()