Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
DSubtypeLocaleUtilsTests.java160 final String subtypeName = SubtypeLocaleUtils in testAllFullDisplayName() local
165 assertTrue(subtypeName, subtypeName.contains(layoutName)); in testAllFullDisplayName()
169 assertTrue(subtypeName, subtypeName.contains(languageName)); in testAllFullDisplayName()
488 final String subtypeName = SubtypeLocaleUtils in testIsRtlLanguage() local
492 assertTrue(subtypeName, subtype.isRtlSubtype()); in testIsRtlLanguage()
494 assertFalse(subtypeName, subtype.isRtlSubtype()); in testIsRtlLanguage()
/packages/modules/Connectivity/framework/src/android/net/
DNetworkInfo.java168 @Nullable String typeName, @Nullable String subtypeName) { in NetworkInfo() argument
176 mSubtypeName = subtypeName; in NetworkInfo()
254 public void setSubtype(int subtype, String subtypeName) { in setSubtype() argument
257 mSubtypeName = subtypeName; in setSubtype()
635 String subtypeName = in.readString();
636 NetworkInfo netInfo = new NetworkInfo(netType, subtype, typeName, subtypeName);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DRichInputMethodSubtypeTests.java176 final String subtypeName = SubtypeLocaleUtils in testAllFullDisplayNameForSpacebar() local
182 assertFalse(subtypeName, spacebarText.contains(languageName)); in testAllFullDisplayNameForSpacebar()
184 assertTrue(subtypeName, spacebarText.contains(languageName)); in testAllFullDisplayNameForSpacebar()
192 final String subtypeName = SubtypeLocaleUtils in testAllMiddleDisplayNameForSpacebar() local
204 assertEquals(subtypeName, SubtypeLocaleUtils.getKeyboardLayoutSetDisplayName( in testAllMiddleDisplayNameForSpacebar()
207 assertEquals(subtypeName, in testAllMiddleDisplayNameForSpacebar()
/packages/apps/TvSettings/SettingsAPI/java/com/android/tv/settings/library/settingslib/
DInputMethodAndSubtypeUtil.java156 final CharSequence subtypeName = subtype.getDisplayName(context, in getSubtypeLocaleNameAsSentence() local
159 return LocaleHelper.toSentenceCase(subtypeName.toString(), locale); in getSubtypeLocaleNameAsSentence()
DInputMethodAndSubtypeUtilCompat.java293 final CharSequence subtypeName = subtype.getDisplayName(context, in getSubtypeLocaleNameAsSentence() local
296 return LocaleHelper.toSentenceCase(subtypeName.toString(), locale); in getSubtypeLocaleNameAsSentence()
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/
DNetworkInfoTest.kt98 assertEquals(LTE_SUBTYPE_NAME, networkInfo.subtypeName) in testConstructor()