Home
last modified time | relevance | path

Searched refs:hasVariationSelector (Results 1 – 7 of 7) sorted by relevance

/frameworks/minikin/tests/unittest/
DFontCollectionTest.cpp50 EXPECT_FALSE(fc->hasVariationSelector(codepoint, vs)) in expectVSGlyphs()
53 EXPECT_TRUE(fc->hasVariationSelector(codepoint, vs)) in expectVSGlyphs()
62 EXPECT_FALSE(fc->hasVariationSelector(0x82A6, 0)); in TEST()
66 EXPECT_FALSE(fc->hasVariationSelector(0x845B, 0)); in TEST()
70 EXPECT_FALSE(fc->hasVariationSelector(0x537F, 0)); in TEST()
73 EXPECT_FALSE(fc->hasVariationSelector(0x717D, 0)); in TEST()
83 EXPECT_TRUE(collection->hasVariationSelector(0x2623, 0xFE0E)); in TEST()
84 EXPECT_TRUE(collection->hasVariationSelector(0x2623, 0xFE0F)); in TEST()
88 EXPECT_TRUE(collection->hasVariationSelector(0x2626, 0xFE0E)); in TEST()
89 EXPECT_FALSE(collection->hasVariationSelector(0x2626, 0xFE0F)); in TEST()
[all …]
/frameworks/base/libs/hwui/hwui/
DMinikinUtils.cpp85 bool MinikinUtils::hasVariationSelector(const Typeface* typeface, uint32_t codepoint, uint32_t vs) { in hasVariationSelector() function in android::MinikinUtils
87 return resolvedFace->fFontCollection->hasVariationSelector(codepoint, vs); in hasVariationSelector()
DMinikinUtils.h56 ANDROID_API static bool hasVariationSelector(const Typeface* typeface, uint32_t codepoint,
/frameworks/minikin/tests/perftests/
DFontCollection.cpp57 collection->hasVariationSelector(baseCp, vsCp); in BM_FontCollection_hasVariationSelector()
/frameworks/minikin/include/minikin/
DFontCollection.h57 bool hasVariationSelector(uint32_t baseCodepoint, uint32_t variationSelector) const;
/frameworks/minikin/libs/minikin/
DFontCollection.cpp337 bool FontCollection::hasVariationSelector(uint32_t baseCodepoint, in hasVariationSelector() function in minikin::FontCollection
/frameworks/base/core/jni/android/graphics/
DPaint.cpp468 bool hasVS = MinikinUtils::hasVariationSelector(typeface, prevCp, cp); in hasGlyph()