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

1 2 3 4 5

  /frameworks/base/core/tests/coretests/src/android/view/inputmethod/
InputMethodSubtypeArrayTest.java 29 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
30 subtypes.add(createDummySubtype(0, "en_US"));
31 subtypes.add(createDummySubtype(1, "en_US"));
32 subtypes.add(createDummySubtype(2, "ja_JP"));
34 final InputMethodSubtypeArray array = new InputMethodSubtypeArray(subtypes);
35 assertEquals(subtypes.size(), array.getCount());
36 assertEquals(subtypes.get(0), array.get(0));
37 assertEquals(subtypes.get(1), array.get(1));
38 assertEquals(subtypes.get(2), array.get(2));
41 assertEquals(subtypes.size(), clonedArray.getCount())
    [all...]
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 169 * declaringType} and its subtypes.
172 Set<Integer> subtypes = findAssignableTypes(dex, declaringType); local
178 && subtypes.contains(method.getDeclaringClassIndex())) {
  /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
PhysicalKeyboardFragment.java 334 final List<InputMethodSubtype> subtypes = imm.getEnabledInputMethodSubtypeList( local
336 if (subtypes.isEmpty()) {
345 // If the IME supports subtypes, we pick up "keyboard" subtypes only.
346 final int N = subtypes.size();
348 final InputMethodSubtype subtype = subtypes.get(i);
  /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);
  /frameworks/base/core/tests/coretests/src/com/android/internal/inputmethod/
InputMethodSubtypeSwitchingControllerTest.java 69 List<InputMethodSubtype> subtypes = null; local
71 subtypes = new ArrayList<>();
73 subtypes.add(createDummySubtype(subtypeLocale));
77 DUMMY_SETTING_ACTIVITY_NAME, subtypes, DUMMY_IS_DEFAULT_RES_ID,
79 if (subtypes == null) {
83 for (int i = 0; i < subtypes.size(); ++i) {
105 ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
106 subtypes.add(new InputMethodSubtypeBuilder()
113 DUMMY_SETTING_ACTIVITY_NAME, subtypes, DUMMY_IS_DEFAULT_RES_ID,
365 // Subtypes of IME "X"
    [all...]
InputMethodUtilsTest.java 225 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
226 subtypes.add(nonAutoEnUS);
227 subtypes.add(nonAutoEnGB);
228 subtypes.add(nonAutoJa);
229 subtypes.add(nonAutoFil);
230 subtypes.add(autoSubtype); // overridesImplicitlyEnabledSubtype == true
231 subtypes.add(nonAutoEnabledWhenDefaultIsNotAsciiCalableSubtype);
232 subtypes.add(nonAutoEnabledWhenDefaultIsNotAsciiCalableSubtype2);
233 subtypes.add(nonAutoHandwritingEn);
234 subtypes.add(nonAutoHandwritingFr)
250 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
275 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
300 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
321 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
344 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
367 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
384 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
401 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
421 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
441 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
464 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
499 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
516 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
533 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
547 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
561 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
575 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
592 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
640 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
672 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
699 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
726 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
745 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
883 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
900 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
911 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
922 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
930 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
958 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
969 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
985 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
997 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
1010 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
1031 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
1173 ArraySet<String> subtypes = r.get("ime0"); local
1182 ArraySet<String> subtypes = r.get("ime0"); local
1191 ArraySet<String> subtypes = r.get("ime0"); local
    [all...]
  /external/r8/src/main/java/com/android/tools/r8/graph/
AppInfoWithSubtyping.java 19 // Map from types to their subtypes.
43 public ImmutableSet<DexType> subtypes(DexType type) { method in class:AppInfoWithSubtyping
45 ImmutableSet<DexType> subtypes = subtypeMap.get(type); local
46 return subtypes == null ? ImmutableSet.of() : subtypes;
121 Set<DexType> set = subtypes(method.holder);
160 Set<DexType> set = subtypes(method.holder);
188 Set<DexType> set = subtypes(method.holder);
210 Set<DexType> set = subtypes(method.holder);
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodInfo.java 90 * An array-like container of the subtypes.
137 * @param additionalSubtypes additional subtypes being added to this InputMethodInfo
155 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
190 // Parse all subtypes
226 subtypes.add(subtype);
236 if (subtypes.size() == 0) {
244 if (!subtypes.contains(subtype)) {
245 subtypes.add(subtype);
252 mSubtypes = new InputMethodSubtypeArray(subtypes);
276 settingsActivity, null /* subtypes */, 0 /* isDefaultResId */
    [all...]
InputMethodManager.java 709 * Returns a list of enabled input method subtypes for the specified input method info.
710 * @param imi An input method info whose subtypes list will be returned.
712 * selected subtypes. If an input method info doesn't have enabled subtypes, the framework
713 * will implicitly enable subtypes according to the current system language.
2161 ArrayList<InputMethodSubtype> subtypes = null; local
    [all...]
  /external/llvm/include/llvm/IR/
Type.h 299 ArrayRef<Type*> subtypes() const { function in class:llvm::Type
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Type.h 301 ArrayRef<Type*> subtypes() const { function in class:llvm::Type
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/inputmethod/
InputMethodPreference.java 221 final List<InputMethodSubtype> subtypes = imm.getEnabledInputMethodSubtypeList(mImi, true); local
223 subtypes, getContext(), mImi);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
Type.h 305 ArrayRef<Type*> subtypes() const { function in class:llvm::Type
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
Type.h 305 ArrayRef<Type*> subtypes() const { function in class:llvm::Type
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
Type.h 305 ArrayRef<Type*> subtypes() const { function in class:llvm::Type
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Type.h 305 ArrayRef<Type*> subtypes() const { function in class:llvm::Type
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/IR/
Type.h 305 ArrayRef<Type*> subtypes() const { function in class:llvm::Type
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/IR/
Type.h 305 ArrayRef<Type*> subtypes() const { function in class:llvm::Type
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/IR/
Type.h 305 ArrayRef<Type*> subtypes() const { function in class:llvm::Type
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
Type.h 305 ArrayRef<Type*> subtypes() const { function in class:llvm::Type
  /external/tcpdump/
print-radius.c 377 const char **subtypes; /* Standard Values (if any) */ member in struct:attrtype
638 table = attr_type[attr_code].subtypes;
    [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);
  /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...]

Completed in 1586 milliseconds

1 2 3 4 5