Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/graphics/fonts/
H A DFontUpdateRequest.java80 private final @NonNull FontStyle mFontStyle; field in FontUpdateRequest.Font
87 mFontStyle = fontStyle; in Font()
100 dest.writeInt(mFontStyle.getWeight()); in writeToParcel()
101 dest.writeInt(mFontStyle.getSlant()); in writeToParcel()
168 return mFontStyle; in getFontStyle()
186 && mFontStyle.equals(font.mFontStyle) in equals()
192 return Objects.hash(mPostScriptName, mFontStyle, mIndex, mFontVariationSettings); in hashCode()
199 + ", mFontStyle=" + mFontStyle in toString()
/aosp14/frameworks/base/graphics/java/android/graphics/fonts/
H A DFont.java516 private FontStyle mFontStyle = null; field in Font
592 if (mFontStyle == null) { in getStyle()
594 mFontStyle = new FontStyle( in getStyle()
599 return mFontStyle; in getStyle()
/aosp14/frameworks/base/native/android/
H A Dsystem_fonts.cpp102 minikin::FontStyle mFontStyle; member
292 matcher->mFontStyle = minikin::FontStyle( in AFontMatcher_setStyle()
316 matcher->mFontStyle, in AFontMatcher_match()
322 fc->getBestFont(minikin::U16StringPiece(text, textLength), runs[0], matcher->mFontStyle) in AFontMatcher_match()