Searched refs:systemFonts (Results 1 – 2 of 2) sorted by relevance
55 TestableSystemFonts systemFonts; in TEST() local57 systemFonts.registerFallback("sans", fc); in TEST()58 EXPECT_EQ(fc, systemFonts.findFontCollection("sans")); in TEST()62 TestableSystemFonts systemFonts; in TEST() local64 systemFonts.registerDefault(fc); in TEST()65 EXPECT_EQ(fc, systemFonts.findFontCollection("unknown-name")); in TEST()69 TestableSystemFonts systemFonts; in TEST() local72 systemFonts.registerDefault(fc1); in TEST()73 systemFonts.registerFallback("sans", fc2); in TEST()74 EXPECT_EQ(fc1, systemFonts.findFontCollection("unknown-name")); in TEST()[all …]
24 static SystemFonts systemFonts; in getInstance() local25 return systemFonts; in getInstance()