Home | History | Annotate | Download | only in textservice

Lines Matching refs:subtype

34  * This class is used to specify meta information of a subtype contained in a spell checker.
35 * Subtype can describe locale (e.g. en_US, fr_FR...) used for settings.
50 * @param nameId The name of the subtype
51 * @param locale The locale supported by the subtype
52 * @param extraValue The extra value of the subtype
72 * @return the name of the subtype
79 * @return the locale of the subtype
86 * @return the extra value of the subtype
113 * The string of ExtraValue in subtype should be defined as follows:
116 * @return the subtype contains specified the extra value
123 * The string of ExtraValue in subtype should be defined as follows:
140 SpellCheckerSubtype subtype = (SpellCheckerSubtype) o;
141 return (subtype.hashCode() == hashCode())
142 && (subtype.getNameResId() == getNameResId())
143 && (subtype.getLocale().equals(getLocale()))
144 && (subtype.getExtraValue().equals(getExtraValue()));
172 * @return a display name for this subtype. The string resource of the label (mSubtypeNameResId)
240 SpellCheckerSubtype subtype = sci.getSubtypeAt(i);
241 if (subtypesSet.contains(subtype)) {
242 sortedList.add(subtype);
243 subtypesSet.remove(subtype);
248 for (SpellCheckerSubtype subtype: subtypesSet) {
249 sortedList.add(subtype);