Home
last modified time | relevance | path

Searched refs:findFontCollection (Results 1 – 3 of 3) sorted by relevance

/aosp12/frameworks/minikin/tests/unittest/
H A DSystemFontsTest.cpp34 std::shared_ptr<FontCollection> findFontCollection(const std::string& familyName) { in findFontCollection() function in minikin::__anon36b4b3aa0110::TestableSystemFonts
58 EXPECT_EQ(fc, systemFonts.findFontCollection("sans")); in TEST()
65 EXPECT_EQ(fc, systemFonts.findFontCollection("unknown-name")); in TEST()
74 EXPECT_EQ(fc1, systemFonts.findFontCollection("unknown-name")); in TEST()
75 EXPECT_EQ(fc2, systemFonts.findFontCollection("sans")); in TEST()
86 EXPECT_EQ(fc2, systemFonts.findFontCollection("unknown-name")); in TEST()
87 EXPECT_EQ(fc1, systemFonts.findFontCollection("sans")); in TEST()
/aosp12/frameworks/minikin/include/minikin/
H A DSystemFonts.h33 static std::shared_ptr<FontCollection> findFontCollection(const std::string& familyName) { in findFontCollection() function
/aosp12/frameworks/base/native/android/
H A Dsystem_fonts.cpp324 minikin::SystemFonts::findFontCollection(familyName); in AFontMatcher_match()