Searched refs:mTypeface (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/text/style/
H A DTextAppearanceSpan.java33 private final String mTypeface; field in class:TextAppearanceSpan
73 mTypeface = family;
79 mTypeface = "sans";
83 mTypeface = "serif";
87 mTypeface = "monospace";
91 mTypeface = null;
115 mTypeface = family;
123 mTypeface = src.readString();
157 dest.writeString(mTypeface);
179 return mTypeface;
[all...]
/frameworks/support/emoji/core/src/android/support/text/emoji/
H A DMetadataRepo.java64 private final Typeface mTypeface; field in class:MetadataRepo
73 mTypeface = null;
87 mTypeface = typeface;
148 return mTypeface;
/frameworks/base/libs/hwui/hwui/
H A DMinikinSkia.cpp29 minikin::MinikinFont(typeface->uniqueID()), mTypeface(std::move(typeface)), mFontData(fontData),
52 ALOGD("width for typeface %d glyph %d = %f", mTypeface->uniqueID(), glyph_id, skWidth);
71 return mTypeface.get();
75 return mTypeface;
99 SkStreamAsset* stream = mTypeface->openStream(&ttcIndex);
H A DMinikinSkia.h58 sk_sp<SkTypeface> mTypeface; member in class:android::MinikinFontSkia
/frameworks/base/core/tests/coretests/src/android/provider/
H A DFontsContractE2ETest.java87 private Typeface mTypeface; field in class:FontsContractE2ETest.TestCallback
93 mTypeface = typeface;
102 return mTypeface;
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java84 private Typeface_Delegate mTypeface; field in class:Paint_Delegate
882 if (delegate.mTypeface != typefaceDelegate || delegate.mNativeTypeface != typeface) {
883 delegate.mTypeface = Typeface_Delegate.getDelegate(typeface);
1180 if (mTypeface != paint.mTypeface || mNativeTypeface != paint.mNativeTypeface) {
1181 mTypeface = paint.mTypeface;
1222 mTypeface = Typeface_Delegate.getDelegate(Typeface.sDefaults[0].native_instance);
1243 if (mTypeface != null) {
1245 List<Font> fonts = mTypeface
[all...]
/frameworks/support/design/src/android/support/design/widget/
H A DTextInputLayout.java136 private Typeface mTypeface; field in class:TextInputLayout
296 if ((mTypeface != null && !mTypeface.equals(typeface))
297 || (mTypeface == null && typeface != null)) {
298 mTypeface = typeface;
315 return mTypeface;
627 if (mTypeface != null) {
628 mErrorView.setTypeface(mTypeface);
784 if (mTypeface != null) {
785 mCounterView.setTypeface(mTypeface);
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java72 private Typeface mTypeface; field in class:Paint
520 mTypeface = null;
558 mTypeface = paint.mTypeface;
1172 return mTypeface;
1190 mTypeface = typeface;
1596 setTypeface(Typeface.createFromTypefaceWithVariation(mTypeface,
1603 Typeface targetTypeface = mTypeface == null ? Typeface.DEFAULT : mTypeface;
/frameworks/support/compat/tests/java/android/support/v4/provider/
H A DFontsContractCompatTest.java115 private Typeface mTypeface; field in class:FontsContractCompatTest.TestCallback
121 mTypeface = typeface;
130 return mTypeface;
/frameworks/base/core/java/android/widget/
H A DRadialTimePickerView.java139 private final Typeface mTypeface; field in class:RadialTimePickerView
338 mTypeface = Typeface.create("sans-serif", Typeface.NORMAL);
744 drawTextElements(canvas, mTextSize[HOURS], mTypeface, mTextColor[HOURS], mOuterTextHours,
750 drawTextElements(canvas, mTextSize[HOURS_INNER], mTypeface, mTextColor[HOURS_INNER],
776 drawTextElements(canvas, mTextSize[MINUTES], mTypeface, mTextColor[MINUTES], mMinutesText,

Completed in 344 milliseconds