Home
last modified time | relevance | path

Searched refs:subtypeName (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/core/java/android/net/
DNetworkInfo.java168 @Nullable String typeName, @Nullable String subtypeName) { in NetworkInfo() argument
176 mSubtypeName = subtypeName; in NetworkInfo()
252 public void setSubtype(int subtype, String subtypeName) { in setSubtype() argument
255 mSubtypeName = subtypeName; in setSubtype()
609 String subtypeName = in.readString();
610 NetworkInfo netInfo = new NetworkInfo(netType, subtype, typeName, subtypeName);
/frameworks/base/packages/SettingsLib/tests/integ/src/com/android/settingslib/inputmethod/
DInputMethodSubtypePreferenceTest.java99 final String subtypeName, in createPreference() argument
102 final String key = subtypeName + "-" + subtypeLocaleString + "-" + systemLocale; in createPreference()
109 subtypeName, in createPreference()
/frameworks/base/core/java/android/view/textservice/
DSpellCheckerSubtype.java251 final CharSequence subtypeName = context.getPackageManager().getText( in getDisplayName() local
253 if (!TextUtils.isEmpty(subtypeName)) { in getDisplayName()
254 return String.format(subtypeName.toString(), localeStr); in getDisplayName()
/frameworks/base/core/java/android/view/inputmethod/
DInputMethodSubtype.java465 final CharSequence subtypeName = context.getPackageManager().getText( in getDisplayName() local
467 if (TextUtils.isEmpty(subtypeName)) { in getDisplayName()
470 final String subtypeNameString = subtypeName.toString(); in getDisplayName()
493 Slog.w(TAG, "Found illegal format in subtype name("+ subtypeName + "): " + e); in getDisplayName()
/frameworks/base/services/core/java/com/android/server/inputmethod/
DInputMethodSubtypeSwitchingController.java58 public ImeSubtypeListItem(CharSequence imeName, CharSequence subtypeName, in ImeSubtypeListItem() argument
61 mSubtypeName = subtypeName; in ImeSubtypeListItem()
DInputMethodManagerService.java4254 final CharSequence subtypeName = item.mSubtypeName; in getView() local
4257 if (TextUtils.isEmpty(subtypeName)) { in getView()
4261 firstTextView.setText(subtypeName); in getView()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/inputmethod/
DInputMethodAndSubtypeUtil.java378 final CharSequence subtypeName = subtype.getDisplayName(context, in getSubtypeLocaleNameAsSentence() local
381 return LocaleHelper.toSentenceCase(subtypeName.toString(), locale); in getSubtypeLocaleNameAsSentence()
DInputMethodAndSubtypeUtilCompat.java378 final CharSequence subtypeName = subtype.getDisplayName(context, in getSubtypeLocaleNameAsSentence() local
381 return LocaleHelper.toSentenceCase(subtypeName.toString(), locale); in getSubtypeLocaleNameAsSentence()
/frameworks/base/services/tests/servicestests/src/com/android/server/inputmethod/
DInputMethodSubtypeSwitchingControllerTest.java104 String imeName, String subtypeName, String subtypeLocale, int subtypeIndex, in createDummyItem() argument
129 return new ImeSubtypeListItem(imeName, subtypeName, imi, subtypeIndex, subtypeLocale, in createDummyItem()