Searched defs:mSubtypeExtraValue (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtype.java61 private final String mSubtypeExtraValue; field in class:InputMethodSubtype
155 mSubtypeExtraValue = extraValue != null ? extraValue : "";
161 mSubtypeExtraValue, mIsAuxiliary, mOverridesImplicitlyEnabledSubtype);
174 mSubtypeExtraValue = s != null ? s : "";
214 return mSubtypeExtraValue;
282 final String[] pairs = mSubtypeExtraValue.split(EXTRA_VALUE_PAIR_SEPARATOR);
355 dest.writeString(mSubtypeExtraValue);
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSubtype.java45 private final String mSubtypeExtraValue; field in class:SpellCheckerSubtype
57 mSubtypeExtraValue = extraValue != null ? extraValue : "";
58 mSubtypeHashCode = hashCodeInternal(mSubtypeLocale, mSubtypeExtraValue);
67 mSubtypeExtraValue = s != null ? s : "";
68 mSubtypeHashCode = hashCodeInternal(mSubtypeLocale, mSubtypeExtraValue);
89 return mSubtypeExtraValue;
95 final String[] pairs = mSubtypeExtraValue.split(EXTRA_VALUE_PAIR_SEPARATOR);
203 dest.writeString(mSubtypeExtraValue);

Completed in 62 milliseconds