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

1 2 3 4 5 6

  /frameworks/base/core/tests/coretests/src/android/view/inputmethod/
InputMethodSubtypeArrayTest.java 37 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
38 subtypes.add(createDummySubtype(0, "en_US"));
39 subtypes.add(createDummySubtype(1, "en_US"));
40 subtypes.add(createDummySubtype(2, "ja_JP"));
42 final InputMethodSubtypeArray array = new InputMethodSubtypeArray(subtypes);
43 assertEquals(subtypes.size(), array.getCount());
44 assertEquals(subtypes.get(0), array.get(0));
45 assertEquals(subtypes.get(1), array.get(1));
46 assertEquals(subtypes.get(2), array.get(2));
49 assertEquals(subtypes.size(), clonedArray.getCount())
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/inputmethod/
InputMethodUtilsTest.java 266 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
267 subtypes.add(nonAutoEnUS);
268 subtypes.add(nonAutoEnGB);
269 subtypes.add(nonAutoJa);
270 subtypes.add(nonAutoFil);
271 subtypes.add(autoSubtype); // overridesImplicitlyEnabledSubtype == true
272 subtypes.add(nonAutoEnabledWhenDefaultIsNotAsciiCalableSubtype);
273 subtypes.add(nonAutoEnabledWhenDefaultIsNotAsciiCalableSubtype2);
274 subtypes.add(nonAutoHandwritingEn);
275 subtypes.add(nonAutoHandwritingFr)
291 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
316 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
341 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
362 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
385 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
408 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
425 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
442 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
462 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
482 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
505 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
540 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
557 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
574 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
588 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
602 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
616 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
633 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
681 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
713 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
740 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
767 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
786 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
936 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
953 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
964 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
975 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
983 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
1011 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
1022 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
1038 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
1050 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
1063 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
1084 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
1226 ArraySet<String> subtypes = r.get("ime0"); local
1235 ArraySet<String> subtypes = r.get("ime0"); local
1244 ArraySet<String> subtypes = r.get("ime0"); local
    [all...]
InputMethodSubtypeSwitchingControllerTest.java 79 List<InputMethodSubtype> subtypes = null; local
81 subtypes = new ArrayList<>();
83 subtypes.add(createDummySubtype(subtypeLocale));
87 DUMMY_SETTING_ACTIVITY_NAME, subtypes, DUMMY_IS_DEFAULT_RES_ID,
89 if (subtypes == null) {
93 for (int i = 0; i < subtypes.size(); ++i) {
115 ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
116 subtypes.add(new InputMethodSubtypeBuilder()
123 DUMMY_SETTING_ACTIVITY_NAME, subtypes, DUMMY_IS_DEFAULT_RES_ID,
376 // Subtypes of IME "X"
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputMethodManager.java 103 // Initialize additional subtypes.
151 Log.w(TAG, "Can't find current subtype in enabled subtypes: subtype="
306 final List<InputMethodSubtype> subtypes) {
307 return getSubtypeIndexInList(subtype, subtypes) != INDEX_NOT_FOUND;
311 final List<InputMethodSubtype> subtypes) {
312 final int count = subtypes.size();
314 final InputMethodSubtype ims = subtypes.get(index);
378 final List<InputMethodSubtype> subtypes = getEnabledInputMethodSubtypeList(imi, true);
379 // IMEs that have no subtypes should be counted.
380 if (subtypes.isEmpty())
404 final List<InputMethodSubtype> subtypes = getMyEnabledInputMethodSubtypeList(true); local
435 final List<InputMethodSubtype> subtypes = local
479 getInputMethodIdOfThisIme(), subtypes); local
560 final List<InputMethodSubtype> subtypes = shortcuts.get(imi); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
CustomInputStyleSettingsFragment.java 84 final InputMethodSubtype[] subtypes = local
87 for (final InputMethodSubtype subtype : subtypes) {
270 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
278 subtypes.add(subtypePref.getSubtype());
281 return subtypes.toArray(new InputMethodSubtype[subtypes.size()]);
288 final InputMethodSubtype[] subtypes = getSubtypes(); local
289 final String prefSubtypes = AdditionalSubtypeUtils.createPrefSubtypes(subtypes);
297 mRichImm.setAdditionalInputMethodSubtypes(subtypes);
  /external/wpa_supplicant_8/wpa_supplicant/
interworking.h 15 u16 info_ids[], size_t num_ids, u32 subtypes,
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSubtypeArray.java 49 * @param subtypes A list of {@link InputMethodSubtype} from which
52 public InputMethodSubtypeArray(final List<InputMethodSubtype> subtypes) {
53 if (subtypes == null) {
57 mCount = subtypes.size();
58 mInstance = subtypes.toArray(new InputMethodSubtype[mCount]);
InputMethodInfo.java 95 * An array-like container of the subtypes.
142 * @param additionalSubtypes additional subtypes being added to this InputMethodInfo
161 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
197 // Parse all subtypes
233 subtypes.add(subtype);
243 if (subtypes.size() == 0) {
251 if (!subtypes.contains(subtype)) {
252 subtypes.add(subtype);
259 mSubtypes = new InputMethodSubtypeArray(subtypes);
285 settingsActivity, null /* subtypes */, 0 /* isDefaultResId */
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/fix/
jnitype.go 19 desc: `Fixes initializers of JNI's jobject and subtypes`,
27 // and similar for subtypes of jobject.
  /prebuilts/go/linux-x86/src/cmd/fix/
jnitype.go 19 desc: `Fixes initializers of JNI's jobject and subtypes`,
27 // and similar for subtypes of jobject.
  /development/samples/SoftKeyboard/src/com/android/inputmethodcommon/
InputMethodSettingsImpl.java 55 * @return true if this application is an IME and has two or more subtypes, false otherwise.
102 final List<InputMethodSubtype> subtypes = imm.getEnabledInputMethodSubtypeList(imi, true);
104 final int N = subtypes.size();
106 final InputMethodSubtype subtype = subtypes.get(i);
  /frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
InputMethodSettingsImpl.java 48 * @return true if this application is an IME and has two or more subtypes, false otherwise.
82 final List<InputMethodSubtype> subtypes = imm.getEnabledInputMethodSubtypeList(imi, true);
84 final int N = subtypes.size();
86 final InputMethodSubtype subtype = subtypes.get(i);
  /frameworks/base/core/java/com/android/internal/inputmethod/
InputMethodUtils.java 404 ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
407 subtypes.add(imi.getSubtypeAt(i));
409 return subtypes;
414 ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
419 subtypes.add(subtype);
422 return subtypes;
482 // it does not check if subtypes are also identical.
504 final List<InputMethodSubtype> subtypes = InputMethodUtils.getSubtypes(imi); local
508 final int numSubtypes = subtypes.size();
513 // scan overriding implicitly enabled subtypes
811 ArraySet<String> subtypes = new ArraySet<>(); local
829 final ArrayList<String> subtypes = new ArrayList<>(2); local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardPasswordView.java 195 // Do not show auxiliary subtypes in password lock screen.
265 final List<InputMethodSubtype> subtypes =
267 // IMEs that have no subtypes should be counted.
268 if (subtypes.isEmpty()) {
274 for (InputMethodSubtype subtype : subtypes) {
279 final int nonAuxCount = subtypes.size() - auxCount;
281 // IMEs that have one or more non-auxiliary subtypes should be counted.
283 // subtypes should be counted as well.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
AdditionalSubtypeUtils.java 119 // Here we assume that all the additional subtypes have AsciiCapable and EmojiCapable.
133 public static String createPrefSubtypes(final InputMethodSubtype[] subtypes) {
134 if (subtypes == null || subtypes.length == 0) {
138 for (final InputMethodSubtype subtype : subtypes) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryList.java 87 final List<InputMethodSubtype> subtypes = local
90 for (InputMethodSubtype subtype : subtypes) {
99 // enabled subtypes. If we already have the locale-without-country version of the system
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
AdditionalSubtypeUtilsTests.java 163 final InputMethodSubtype[] subtypes = { EN_US_DVORAK, ZZ_AZERTY }; local
164 final String prefSubtype = AdditionalSubtypeUtils.createPrefSubtypes(subtypes);
LanguageOnSpacebarUtilsTests.java 85 private static void enableSubtypes(final RichInputMethodSubtype ... subtypes) {
87 for (final RichInputMethodSubtype subtype : subtypes) {
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/search/query/
InputDeviceResultTask.java 192 @NonNull final List<InputMethodSubtype> subtypes, @NonNull final Context context,
194 if (subtypes.isEmpty()) {
198 final int subtypeCount = subtypes.size();
201 subtypeNames[i] = subtypes.get(i).getDisplayName(context,
  /external/libxml2/include/libxml/
schemasInternals.h 262 xmlSchemaTypePtr subtypes; /* the type definition */ member in struct:_xmlSchemaAttribute
610 xmlSchemaTypePtr subtypes; member in struct:_xmlSchemaType
631 Could we use @subtypes for this? */
773 xmlSchemaTypePtr subtypes; /* the type definition */ member in struct:_xmlSchemaElement
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/inputmethod/
InputMethodAndSubtypeUtil.java 62 // InputMethods and subtypes are saved in the settings as follows:
210 // subtypes are also checked just as an indicator to users. We also need to
212 // subtypes can be saved here.
266 // Redefines SelectedSubtype when all subtypes are unchecked or there is no subtype
338 // There is no need to enable/disable subtypes of disabled IMEs.
385 @NonNull final List<InputMethodSubtype> subtypes, @NonNull final Context context,
387 if (subtypes.isEmpty()) {
391 final int subtypeCount = subtypes.size();
394 subtypeNames[i] = subtypes.get(i).getDisplayName(context,
InputMethodPreference.java 230 final List<InputMethodSubtype> subtypes = imm.getEnabledInputMethodSubtypeList(mImi, true); local
232 subtypes, getContext(), mImi);
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 171 * declaringType} and its subtypes.
174 Set<Integer> subtypes = findAssignableTypes(dex, declaringType); local
180 && subtypes.contains(method.getDeclaringClassIndex())) {
  /frameworks/base/core/java/com/android/internal/view/
IInputMethodManager.aidl 86 void setAdditionalInputMethodSubtypes(String id, in InputMethodSubtype[] subtypes);
  /packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionaryList.java 115 final List<InputMethodSubtype> subtypes = local
118 for (InputMethodSubtype subtype : subtypes) {
127 // enabled subtypes. If we already have the locale-without-country version of the system

Completed in 539 milliseconds

1 2 3 4 5 6