Home
last modified time | relevance | path

Searched refs:subtypeName (Results 1 – 4 of 4) 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.java167 @Nullable String typeName, @Nullable String subtypeName) { in NetworkInfo() argument
175 mSubtypeName = subtypeName; in NetworkInfo()
251 public void setSubtype(int subtype, String subtypeName) { in setSubtype() argument
254 mSubtypeName = subtypeName; in setSubtype()
608 String subtypeName = in.readString();
609 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/modules/Connectivity/tests/cts/net/src/android/net/cts/
DNetworkInfoTest.kt94 assertEquals(LTE_SUBTYPE_NAME, networkInfo.subtypeName) in testConstructor()