Lines Matching refs:systemFonts
46 TestableSystemFonts systemFonts; in TEST() local
48 systemFonts.registerFallback("sans", fc); in TEST()
49 EXPECT_EQ(fc, systemFonts.findFontCollection("sans")); in TEST()
53 TestableSystemFonts systemFonts; in TEST() local
55 systemFonts.registerDefault(fc); in TEST()
56 EXPECT_EQ(fc, systemFonts.findFontCollection("unknown-name")); in TEST()
60 TestableSystemFonts systemFonts; in TEST() local
63 systemFonts.registerDefault(fc1); in TEST()
64 systemFonts.registerFallback("sans", fc2); in TEST()
65 EXPECT_EQ(fc1, systemFonts.findFontCollection("unknown-name")); in TEST()
66 EXPECT_EQ(fc2, systemFonts.findFontCollection("sans")); in TEST()