Home | History | Annotate | Download | only in textservice

Lines Matching refs:extraValue

77      * @param extraValue The extra value of the subtype
82 public SpellCheckerSubtype(int nameId, String locale, String languageTag, String extraValue,
87 mSubtypeExtraValue = extraValue != null ? extraValue : "";
97 * @param extraValue The extra value of the subtype
103 public SpellCheckerSubtype(int nameId, String locale, String extraValue) {
104 this(nameId, locale, SUBTYPE_LANGUAGE_TAG_NONE, extraValue, SUBTYPE_ID_NONE);
168 Slog.w(TAG, "ExtraValue has two or more '='s");
178 * The string of ExtraValue in subtype should be defined as follows:
188 * The string of ExtraValue in subtype should be defined as follows:
286 private static int hashCodeInternal(String locale, String extraValue) {
287 return Arrays.hashCode(new Object[] {locale, extraValue});