Searched refs:systemFonts (Results 1 – 2 of 2) sorted by relevance
46 TestableSystemFonts systemFonts; in TEST() local48 systemFonts.registerFallback("sans", fc); in TEST()49 EXPECT_EQ(fc, systemFonts.findFontCollection("sans")); in TEST()53 TestableSystemFonts systemFonts; in TEST() local55 systemFonts.registerDefault(fc); in TEST()56 EXPECT_EQ(fc, systemFonts.findFontCollection("unknown-name")); in TEST()60 TestableSystemFonts systemFonts; in TEST() local63 systemFonts.registerDefault(fc1); in TEST()64 systemFonts.registerFallback("sans", fc2); in TEST()65 EXPECT_EQ(fc1, systemFonts.findFontCollection("unknown-name")); in TEST()[all …]
24 static SystemFonts systemFonts; in getInstance() local25 return systemFonts; in getInstance()