Home | History | Annotate | Download | only in os

Lines Matching refs:getLocale

29         // InputMethodSubtype#getLocale() returns exactly the same string that is passed to the
31 assertEquals(localeString, createDummySubtype(localeString).getLocale());
33 // InputMethodSubtype#getLocale() should be preserved via marshaling.
34 assertEquals(createDummySubtype(localeString).getLocale(),
35 cloneViaParcel(createDummySubtype(localeString)).getLocale());
37 // InputMethodSubtype#getLocale() should be preserved via marshaling.
38 assertEquals(createDummySubtype(localeString).getLocale(),
39 cloneViaParcel(cloneViaParcel(createDummySubtype(localeString))).getLocale());
66 assertEquals("iw", subtypeIw.getLocale());
67 assertEquals("he", subtypeHe.getLocale());
75 assertEquals("iw", clonedSubtypeIw.getLocale());
76 assertEquals("he", clonedSubtypeHe.getLocale());