Lines Matching refs:subtypes

607      * Returns a list of enabled input method subtypes for the specified input method info.
608 * @param imi An input method info whose subtypes list will be returned.
610 * selected subtypes. If an input method info doesn't have enabled subtypes, the framework
611 * will implicitly enable subtypes according to the current system language.
1760 * Show the settings for enabling subtypes of the specified input method.
1761 * @param imiId An input method, whose subtypes settings will be shown. If imiId is null,
1762 * subtypes of all input methods will be shown.
1775 * Returns the current input method subtype. This subtype is one of the subtypes in
1808 * Returns a map of all shortcut input method info and their subtypes.
1818 ArrayList<InputMethodSubtype> subtypes = null;
1828 subtypes = new ArrayList<InputMethodSubtype>();
1829 ret.put((InputMethodInfo)o, subtypes);
1830 } else if (subtypes != null && o instanceof InputMethodSubtype) {
1831 subtypes.add((InputMethodSubtype)o);
1844 * any subtypes, the framework will simply switch to the last input method with no subtype
1890 * between IMEs and subtypes.
1906 * Set additional input method subtypes. Only a process which shares the same uid with the IME
1907 * can add additional input method subtypes to the IME.
1909 * For example, enabled subtypes are remembered by the framework even after they are removed
1910 * by using this method. If you re-add the same subtypes again,
1916 * @param imiId Id of InputMethodInfo which additional input method subtypes will be added to.
1917 * @param subtypes subtypes will be added as additional subtypes of the current input method.
1919 public void setAdditionalInputMethodSubtypes(String imiId, InputMethodSubtype[] subtypes) {
1922 mService.setAdditionalInputMethodSubtypes(imiId, subtypes);