HomeSort by relevance Sort by last modified time
    Searched defs:mSubtypeExtraValue (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/view/textservice/
SpellCheckerSubtype.java 64 private final String mSubtypeExtraValue;
87 mSubtypeExtraValue = extraValue != null ? extraValue : "";
90 mSubtypeId : hashCodeInternal(mSubtypeLocale, mSubtypeExtraValue);
116 mSubtypeExtraValue = s != null ? s : "";
119 mSubtypeId : hashCodeInternal(mSubtypeLocale, mSubtypeExtraValue);
155 return mSubtypeExtraValue;
161 final String[] pairs = mSubtypeExtraValue.split(EXTRA_VALUE_PAIR_SEPARATOR);
270 dest.writeString(mSubtypeExtraValue);
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSubtype.java 86 private final String mSubtypeExtraValue;
204 mSubtypeExtraValue = subtypeExtraValue == null ? "" : subtypeExtraValue;
207 private String mSubtypeExtraValue = "";
225 builder.mSubtypeExtraValue = extraValue;
295 mSubtypeExtraValue = builder.mSubtypeExtraValue;
305 mSubtypeHashCode = hashCodeInternal(mSubtypeLocale, mSubtypeMode, mSubtypeExtraValue,
321 mSubtypeExtraValue = s != null ? s : "";
392 return mSubtypeExtraValue;
529 final String[] pairs = mSubtypeExtraValue.split(EXTRA_VALUE_PAIR_SEPARATOR)
    [all...]
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
InputMethodInfoTest.java 77 private String mSubtypeExtraValue;
98 mSubtypeExtraValue = "tag," + mSubtypeExtraValue_key + "=" + mSubtypeExtraValue_value;
103 mSubtypeLocale, mSubtypeMode, mSubtypeExtraValue, mSubtypeIsAuxiliary,
134 assertEquals(mSubtypeExtraValue, mInputMethodSubtype.getExtraValue());

Completed in 1061 milliseconds