Home
last modified time | relevance | path

Searched refs:FontFamilyWrapper (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/libs/hwui/jni/fonts/
H A DFontFamily.cpp45 delete reinterpret_cast<FontFamilyWrapper*>(family); in releaseFontFamily()
79 return reinterpret_cast<jlong>(new FontFamilyWrapper(std::move(family))); in FontFamily_Builder_build()
89 FontFamilyWrapper* family = reinterpret_cast<FontFamilyWrapper*>(familyPtr); in FontFamily_getLangTags()
100 FontFamilyWrapper* family = reinterpret_cast<FontFamilyWrapper*>(familyPtr); in FontFamily_getVariant()
106 FontFamilyWrapper* family = reinterpret_cast<FontFamilyWrapper*>(familyPtr); in FontFamily_getFontSize()
112 FontFamilyWrapper* family = reinterpret_cast<FontFamilyWrapper*>(familyPtr); in FontFamily_getFont()
/aosp14/frameworks/base/libs/hwui/jni/
H A DFontUtils.h32 struct FontFamilyWrapper { struct
33 explicit FontFamilyWrapper(std::shared_ptr<minikin::FontFamily>&& family) : family(family) {} in FontFamilyWrapper() argument
H A DFontFamily.cpp61 static inline FontFamilyWrapper* toFamily(jlong ptr) { in toFamily()
62 return reinterpret_cast<FontFamilyWrapper*>(ptr); in toFamily()
94 return toJLong(new FontFamilyWrapper(std::move(family))); in FontFamily_create()
H A DTypeface.cpp116 FontFamilyWrapper* family = reinterpret_cast<FontFamilyWrapper*>(families[i]); in Typeface_createFromArray()