HomeSort by relevance Sort by last modified time
    Searched refs:InputMethodSubtype (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSubtype.aidl 19 parcelable InputMethodSubtype;
InputMethodSubtype.java 66 public final class InputMethodSubtype implements Parcelable {
67 private static final String TAG = InputMethodSubtype.class.getSimpleName();
90 * InputMethodSubtypeBuilder is a builder class of InputMethodSubtype.
210 * @return InputMethodSubtype using parameters in this InputMethodSubtypeBuilder.
212 public InputMethodSubtype build() {
213 return new InputMethodSubtype(this);
237 * {@link InputMethodSubtype#InputMethodSubtype(int, int, String, String, String, boolean,
240 public InputMethodSubtype(int nameId, int iconId, String locale, String mode, String extraValue,
277 public InputMethodSubtype(int nameId, int iconId, String locale, String mode, String extraValue
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/action/
KlpActionTestsBase.java 19 import android.view.inputmethod.InputMethodSubtype;
32 public boolean accept(final InputMethodSubtype subtype) {
38 protected ArrayList<InputMethodSubtype> mSubtypesWhoseNameIsDisplayedInItsLocale;
45 public boolean accept(final InputMethodSubtype subtype) {
KlpActionCustomTests.java 21 import android.view.inputmethod.InputMethodSubtype;
28 for (final InputMethodSubtype subtype : mSubtypesWhoseNameIsDisplayedInItsLocale) {
KlpActionNoneTests.java 21 import android.view.inputmethod.InputMethodSubtype;
31 for (final InputMethodSubtype subtype : mSubtypesWhoseNameIsDisplayedInItsLocale) {
KlpActionSearchTests.java 21 import android.view.inputmethod.InputMethodSubtype;
31 for (final InputMethodSubtype subtype : mSubtypesWhoseNameIsDisplayedInItsLocale) {
KlpActionUnspecifiedTests.java 21 import android.view.inputmethod.InputMethodSubtype;
31 for (final InputMethodSubtype subtype : mSubtypesWhoseNameIsDisplayedInItsLocale) {
LxxActionCustomTests.java 21 import android.view.inputmethod.InputMethodSubtype;
28 for (final InputMethodSubtype subtype : getAllSubtypesList()) {
LxxActionDoneTests.java 21 import android.view.inputmethod.InputMethodSubtype;
31 for (final InputMethodSubtype subtype : getAllSubtypesList()) {
LxxActionGoTests.java 21 import android.view.inputmethod.InputMethodSubtype;
31 for (final InputMethodSubtype subtype : getAllSubtypesList()) {
LxxActionNextTests.java 21 import android.view.inputmethod.InputMethodSubtype;
31 for (final InputMethodSubtype subtype : getAllSubtypesList()) {
LxxActionNoneTests.java 21 import android.view.inputmethod.InputMethodSubtype;
31 for (final InputMethodSubtype subtype : getAllSubtypesList()) {
LxxActionPreviousTests.java 21 import android.view.inputmethod.InputMethodSubtype;
31 for (final InputMethodSubtype subtype : getAllSubtypesList()) {
LxxActionSearchTests.java 21 import android.view.inputmethod.InputMethodSubtype;
31 for (final InputMethodSubtype subtype : getAllSubtypesList()) {
LxxActionSendTests.java 21 import android.view.inputmethod.InputMethodSubtype;
31 for (final InputMethodSubtype subtype : getAllSubtypesList()) {
LxxActionUnspecifiedTests.java 21 import android.view.inputmethod.InputMethodSubtype;
31 for (final InputMethodSubtype subtype : getAllSubtypesList()) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/
KeyboardLayoutSetSubtypesCountTests.java 20 import android.view.inputmethod.InputMethodSubtype;
39 private static String toString(final ArrayList<InputMethodSubtype> subtypeList) {
42 final InputMethodSubtype subtype = subtypeList.get(index);
51 final ArrayList<InputMethodSubtype> allSubtypesList = getAllSubtypesList();
56 final ArrayList<InputMethodSubtype> asciiCapableSubtypesList =
63 final ArrayList<InputMethodSubtype> additionalSubtypesList =
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
InputMethodSubtypeCompatUtils.java 21 import android.view.inputmethod.InputMethodSubtype;
36 // Note that InputMethodSubtype(int nameId, int iconId, String locale, String mode,
40 CompatUtils.getConstructor(InputMethodSubtype.class,
51 // Note that {@link InputMethodSubtype#isAsciiCapable()} has been introduced in API level 19
54 InputMethodSubtype.class, "isAsciiCapable");
62 public static InputMethodSubtype newInputMethodSubtype(int nameId, int iconId, String locale,
67 return new InputMethodSubtype(nameId, iconId, locale, mode, extraValue, isAuxiliary,
70 return (InputMethodSubtype) CompatUtils.newInstance(CONSTRUCTOR_INPUT_METHOD_SUBTYPE,
79 public static boolean isAsciiCapable(final InputMethodSubtype subtype) {
84 // Note that InputMethodSubtype.getLanguageTag() is expected to be available in Android N+
    [all...]
  /frameworks/base/core/tests/coretests/src/android/view/inputmethod/
InputMethodSubtypeTest.java 22 import android.view.inputmethod.InputMethodSubtype.InputMethodSubtypeBuilder;
29 // InputMethodSubtype#getLocale() returns exactly the same string that is passed to the
33 // InputMethodSubtype#getLocale() should be preserved via marshaling.
37 // InputMethodSubtype#getLocale() should be preserved via marshaling.
41 // Make sure InputMethodSubtype#hashCode() returns the same hash code.
52 // The locale string in InputMethodSubtype has accepted an arbitrary text actually,
68 final InputMethodSubtype subtypeIw = createDummySubtype("iw");
69 final InputMethodSubtype subtypeHe = createDummySubtype("he");
75 final InputMethodSubtype clonedSubtypeIw = cloneViaParcel(subtypeIw);
76 final InputMethodSubtype clonedSubtypeHe = cloneViaParcel(subtypeHe)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputMethodManager.java 31 import android.view.inputmethod.InputMethodSubtype;
71 private InputMethodSubtype mShortcutSubtype;
105 final InputMethodSubtype[] additionalSubtypes = getAdditionalSubtypes();
113 public InputMethodSubtype[] getAdditionalSubtypes() {
125 public List<InputMethodSubtype> getMyEnabledInputMethodSubtypeList(
146 final InputMethodSubtype currentSubtype = imm.getCurrentInputMethodSubtype();
147 final List<InputMethodSubtype> enabledSubtypes = getMyEnabledInputMethodSubtypeList(
161 final InputMethodSubtype nextSubtype = enabledSubtypes.get(nextIndex);
176 final List<InputMethodSubtype> enabledSubtypes = getEnabledInputMethodSubtypeList(nextImi,
183 final InputMethodSubtype firstSubtype = enabledSubtypes.get(0)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/internal/
KeyboardTextsSetTests.java 23 import android.view.inputmethod.InputMethodSubtype;
36 private List<InputMethodSubtype> mAllSubtypesList;
44 final ArrayList<InputMethodSubtype> allSubtypesList = new ArrayList<>();
48 final InputMethodSubtype subtype = imi.getSubtypeAt(index);
60 for (final InputMethodSubtype subtype : mAllSubtypesList) {
86 for (final InputMethodSubtype subtype : mAllSubtypesList) {
  /frameworks/base/core/java/android/hardware/input/
InputManagerInternal.java 23 import android.view.inputmethod.InputMethodSubtype;
54 @Nullable InputMethodInfo inputMethodInfo, @Nullable InputMethodSubtype subtype);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
SubtypeLocaleUtilsTests.java 24 import android.view.inputmethod.InputMethodSubtype;
40 private InputMethodSubtype mSavedAddtionalSubtypes[];
42 InputMethodSubtype EN_US;
43 InputMethodSubtype EN_GB;
44 InputMethodSubtype ES_US;
45 InputMethodSubtype FR;
46 InputMethodSubtype FR_CA;
47 InputMethodSubtype FR_CH;
48 InputMethodSubtype DE;
49 InputMethodSubtype DE_CH
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
LanguageOnSpacebarUtils.java 19 import android.view.inputmethod.InputMethodSubtype;
37 private static List<InputMethodSubtype> sEnabledSubtypes = Collections.emptyList();
60 for (final InputMethodSubtype ims : sEnabledSubtypes) {
73 public static void setEnabledSubtypes(@Nonnull final List<InputMethodSubtype> enabledSubtypes) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
KeyboardLayoutSetTestsBase.java 25 import android.view.inputmethod.InputMethodSubtype;
43 private final ArrayList<InputMethodSubtype> mAllSubtypesList = new ArrayList<>();
46 public boolean accept(final InputMethodSubtype subtype);
51 public boolean accept(InputMethodSubtype subtype) {
58 public boolean accept(InputMethodSubtype subtype) {
64 private InputMethodSubtype[] mSavedAdditionalSubtypes;
79 final InputMethodSubtype[] predefinedAdditionalSubtypes =
106 protected final ArrayList<InputMethodSubtype> getAllSubtypesList() {
110 protected final ArrayList<InputMethodSubtype> getSubtypesFilteredBy(
112 final ArrayList<InputMethodSubtype> list = new ArrayList<>()
    [all...]

Completed in 1401 milliseconds

1 2 3 4