Home
last modified time | relevance | path

Searched refs:mTextFontWeight (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
DTextAppearanceInfo.java71 private final int mTextFontWeight; field in TextAppearanceInfo
167 mTextFontWeight = builder.mTextFontWeight; in TextAppearanceInfo()
266 dest.writeInt(mTextFontWeight); in writeToParcel()
291 mTextFontWeight = in.readInt(); in TextAppearanceInfo()
357 return mTextFontWeight; in getTextFontWeight()
533 && mTextFontWeight == that.mTextFontWeight && mTextStyle == that.mTextStyle in equals()
554 return Objects.hash(mTextSize, mTextLocales, mSystemFontFamilyName, mTextFontWeight, in hashCode()
567 + ", mTextFontWeight=" + mTextFontWeight in toString()
597 private int mTextFontWeight = FontStyle.FONT_WEIGHT_UNSPECIFIED; field in TextAppearanceInfo.Builder
656 mTextFontWeight = textFontWeight; in setTextFontWeight()
/frameworks/base/core/java/android/text/style/
DTextAppearanceSpan.java69 private final int mTextFontWeight; field in TextAppearanceSpan
151 mTextFontWeight = a.getInt(com.android.internal.R.styleable in TextAppearanceSpan()
218 mTextFontWeight = FontStyle.FONT_WEIGHT_UNSPECIFIED; in TextAppearanceSpan()
251 mTextFontWeight = src.readInt(); in TextAppearanceSpan()
304 dest.writeInt(mTextFontWeight); in writeToParcelInternal()
366 return mTextFontWeight; in getTextFontWeight()
500 if (mTextFontWeight >= 0) { in updateMeasureState()
501 final int weight = Math.min(FontStyle.FONT_WEIGHT_MAX, mTextFontWeight); in updateMeasureState()