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

1 2

  /frameworks/base/core/tests/inputmethodtests/src/android/os/
InputMethodSubtypeArrayTest.java 30 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
31 subtypes.add(createDummySubtype(0, "en_US"));
32 subtypes.add(createDummySubtype(1, "en_US"));
33 subtypes.add(createDummySubtype(2, "ja_JP"));
35 final InputMethodSubtypeArray array = new InputMethodSubtypeArray(subtypes);
36 assertEquals(subtypes.size(), array.getCount());
37 assertEquals(subtypes.get(0), array.get(0));
38 assertEquals(subtypes.get(1), array.get(1));
39 assertEquals(subtypes.get(2), array.get(2));
42 assertEquals(subtypes.size(), clonedArray.getCount())
    [all...]
InputMethodSubtypeSwitchingControllerTest.java 69 List<InputMethodSubtype> subtypes = null; local
71 subtypes = new ArrayList<InputMethodSubtype>();
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) {
InputMethodTest.java 197 List<InputMethodSubtype> subtypes) {
211 return new InputMethodInfo(ri, isAuxIme, "", subtypes, 1, isDefault);
232 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
233 subtypes.add(createDummyInputMethodSubtype("auto", SUBTYPE_MODE_VOICE, IS_AUX, IS_AUTO,
235 subtypes.add(createDummyInputMethodSubtype("en_US", SUBTYPE_MODE_VOICE, IS_AUX,
238 "dummy.voice0", "DummyVoice0", IS_AUX, IS_DEFAULT, subtypes));
247 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
248 subtypes.add(createDummyInputMethodSubtype("auto", SUBTYPE_MODE_VOICE, IS_AUX, IS_AUTO,
250 subtypes.add(createDummyInputMethodSubtype("en_US", SUBTYPE_MODE_VOICE, IS_AUX,
253 "dummy.voice1", "DummyVoice1", IS_AUX, !IS_DEFAULT, subtypes));
256 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
265 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
272 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
286 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
296 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
309 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
319 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
329 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
345 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DistracterFilterTest.java 43 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
44 subtypes.add(richImm.findSubtypeByLocaleAndKeyboardLayoutSet(
46 subtypes.add(richImm.findSubtypeByLocaleAndKeyboardLayoutSet(
48 subtypes.add(richImm.findSubtypeByLocaleAndKeyboardLayoutSet(
50 mDistracterFilter.updateEnabledSubtypes(subtypes);
  /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 107 final List<InputMethodSubtype> subtypes = local
110 for (InputMethodSubtype subtype : subtypes) {
119 // enabled subtypes. If we already have the locale-without-country version of the system
InputMethodPreference.java 201 final List<InputMethodSubtype> subtypes = imm.getEnabledInputMethodSubtypeList(mImi, true); local
203 for (final InputMethodSubtype subtype : subtypes) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryList.java 85 final List<InputMethodSubtype> subtypes = local
88 for (InputMethodSubtype subtype : subtypes) {
97 // 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 164 final InputMethodSubtype[] subtypes = { EN_UK_DVORAK, ZZ_AZERTY }; local
165 final String prefSubtype = AdditionalSubtypeUtils.createPrefSubtypes(subtypes);
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodInfo.java 91 * An array-like container of the subtypes.
125 * @param additionalSubtypes additional subtypes being added to this InputMethodInfo
143 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
178 // Parse all subtypes
212 subtypes.add(subtype);
222 if (subtypes.size() == 0) {
231 if (!subtypes.contains(subtype)) {
232 subtypes.add(subtype);
239 mSubtypes = new InputMethodSubtypeArray(subtypes);
271 String settingsActivity, List<InputMethodSubtype> subtypes, int isDefaultResId
    [all...]
InputMethodManager.java 666 * Returns a list of enabled input method subtypes for the specified input method info.
667 * @param imi An input method info whose subtypes list will be returned.
669 * selected subtypes. If an input method info doesn't have enabled subtypes, the framework
670 * will implicitly enable subtypes according to the current system language.
1997 ArrayList<InputMethodSubtype> subtypes = null; local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SubtypeSwitcher.java 149 final List<InputMethodSubtype> subtypes = shortcuts.get(imi); local
153 // TODO: Pick up the first found subtype for now. Should handle all subtypes
155 mShortcutSubtype = subtypes.size() > 0 ? subtypes.get(0) : null;
268 // An IME with no subtypes is found.
RichInputMethodManager.java 88 // Initialize additional subtypes.
133 Log.w(TAG, "Can't find current subtype in enabled subtypes: subtype="
268 final List<InputMethodSubtype> subtypes) {
269 return getSubtypeIndexInList(subtype, subtypes) != INDEX_NOT_FOUND;
273 final List<InputMethodSubtype> subtypes) {
274 final int count = subtypes.size();
276 final InputMethodSubtype ims = subtypes.get(index);
326 final List<InputMethodSubtype> subtypes = getEnabledInputMethodSubtypeList(imi, true);
327 // IMEs that have no subtypes should be counted.
328 if (subtypes.isEmpty())
353 final List<InputMethodSubtype> subtypes = getMyEnabledInputMethodSubtypeList(true); local
388 getInputMethodIdOfThisIme(), subtypes); local
    [all...]
  /external/tcpdump/
print-radius.c 337 const char **subtypes; /* Standard Values (if any) */ member in struct:attrtype
587 table = attr_type[attr_code].subtypes;
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
JmDNSImpl.java 107 * This is used to store type entries. The type is stored as a call variable and the map support the subtypes.
1111 ServiceTypeEntry subtypes = _serviceTypes.get(loname); local
1876 ServiceTypeEntry subtypes = _serviceTypes.get(key); local
    [all...]
  /frameworks/base/core/java/com/android/internal/inputmethod/
InputMethodUtils.java 282 Slog.w(TAG, "Found no subtypes in a system IME: " + imi.getPackageName());
333 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
336 subtypes.add(imi.getSubtypeAt(i));
338 return subtypes;
343 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
348 subtypes.add(subtype);
351 return subtypes;
395 final List<InputMethodSubtype> subtypes = InputMethodUtils.getSubtypes(imi); local
401 final int N = subtypes.size();
403 // scan overriding implicitly enabled subtypes
686 ArrayList<String> subtypes = pair.second; local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
CustomInputStyleSettingsFragment.java 409 final InputMethodSubtype[] subtypes = local
412 for (final InputMethodSubtype subtype : subtypes) {
594 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<>(); local
602 subtypes.add(subtypePref.getSubtype());
605 return subtypes.toArray(new InputMethodSubtype[subtypes.size()]);
612 final InputMethodSubtype[] subtypes = getSubtypes(); local
613 final String prefSubtypes = AdditionalSubtypeUtils.createPrefSubtypes(subtypes);
618 mRichImm.setAdditionalInputMethodSubtypes(subtypes);
  /external/chromium_org/third_party/libxml/src/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
  /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
  /external/mdnsresponder/mDNSShared/
uds_daemon.c 113 AuthRecord *subtypes; member in struct:service_instance
610 AuthRecord *st = instance->subtypes;
644 AuthRecord *st = instance->subtypes;
712 if (srv->subtypes) { freeL("ServiceSubTypes", srv->subtypes); srv->subtypes = NULL; }
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface.c 5146 u32 subtypes = 0; local
5325 u32 subtypes = 0; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/
InputMethodManagerService.java 1521 final List<InputMethodSubtype> subtypes = local
3248 ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
3356 final ArrayList<InputMethodSubtype> subtypes = new ArrayList<InputMethodSubtype>(); local
3367 mAdditionalSubtypesMap.put(imi.getId(), subtypes); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
findbugs.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/findbugs/2.0.1/
findbugs-2.0.1.jar 

Completed in 1135 milliseconds

1 2