Searched refs:getLocale (Results 1 - 25 of 29) sorted by relevance

12

/frameworks/base/core/tests/inputmethodtests/src/android/os/
H A DInputMethodSubtypeTest.java29 // 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());
70 assertEquals("iw", subtypeIw.getLocale());
71 assertEquals("he", subtypeHe.getLocale());
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/widget/
H A DSimpleMonthView_Delegate.java58 getLocale(delegate, view), DEFAULT_TITLE_FORMAT));
71 new SimpleDateFormat(DAY_OF_WEEK_FORMAT, getLocale(delegate, view));
76 private static Locale getLocale(SimpleMonthView_Delegate delegate, SimpleMonthView view) { method in class:SimpleMonthView_Delegate
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
H A DI18Name.java33 public Locale getLocale() { method in class:I18Name
H A DIconInfo.java42 public Locale getLocale() { method in class:IconInfo
H A DCivicLocationElement.java75 public Locale getLocale() { method in class:CivicLocationElement
/frameworks/base/core/java/android/view/textservice/
H A DTextServicesManager.java148 final String subtypeLocale = subtypeInUse.getLocale();
158 final String tempSubtypeLocale = subtype.getLocale();
175 sService.getSpellCheckerService(sci.getId(), subtypeInUse.getLocale(),
H A DSpellCheckerSubtype.java81 public String getLocale() { method in class:SpellCheckerSubtype
143 && (subtype.getLocale().equals(getLocale()))
/frameworks/base/core/java/android/text/style/
H A DLocaleSpan.java77 public Locale getLocale() { method in class:LocaleSpan
H A DSuggestionSpan.java219 public String getLocale() { method in class:SuggestionSpan
/frameworks/base/location/java/android/location/
H A DGeocoderParams.java56 public Locale getLocale() { method in class:GeocoderParams
H A DAddress.java70 public Locale getLocale() { method in class:Address
/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java64 * <p>Please note that {@link SpellCheckerService.Session#getLocale()} does not return a valid
111 * getLocale() etc...
175 final String localeStr = getLocale();
223 public String getLocale() { method in class:SpellCheckerService.Session
224 return mInternalSession.getLocale();
298 public String getLocale() { method in class:SpellCheckerService.InternalISpellCheckerSession
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtype.java322 public String getLocale() { method in class:InputMethodSubtype
479 && (subtype.getLocale().equals(getLocale()))
H A DInputMethodInfo.java235 + subtype.getLocale() + ", " + subtype.getMode());
/frameworks/base/core/java/android/speech/tts/
H A DTextToSpeech.java1424 * @deprecated As of API level 21, use <code>getDefaultVoice().getLocale()</code> ({@link
1513 voiceLanguage = voice.getLocale().getISO3Language();
1516 voice.getLocale(), e);
1521 voiceCountry = voice.getLocale().getISO3Country();
1524 voice.getLocale(), e);
1529 mParams.putString(Engine.KEY_PARAM_VARIANT, voice.getLocale().getVariant());
1559 * @deprecated As of API level 21, please use <code>getVoice().getLocale()</code>
1590 locales.add(voice.getLocale());
1638 language = voice.getLocale().getISO3Language();
1641 voice.getLocale(),
[all...]
H A DVoice.java125 public Locale getLocale() { method in class:Voice
/frameworks/base/core/java/com/android/internal/app/
H A DLocalePicker.java71 public Locale getLocale() { method in class:LocalePicker.LocaleInfo
181 text.setTextLocale(item.getLocale());
/frameworks/base/core/java/android/view/accessibility/
H A DCaptioningManager.java94 public final Locale getLocale() { method in class:CaptioningManager
207 final Locale locale = getLocale();
548 * @see CaptioningManager#getLocale()
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecLocalDevicePlayback.java334 if (localeInfo.getLocale().getISO3Language().equals(iso3Language)) {
340 LocalePicker.updateLocale(localeInfo.getLocale());
/frameworks/base/media/java/android/media/
H A DSubtitleController.java215 Locale selectedLocale = mCaptioningManager.getLocale();
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodUtils.java417 subtype.getLocale()));
519 final String locale = subtype.getLocale();
540 if (systemLocale.equals(applicableSubtype.getLocale())) continue;
609 final String subtypeLocale = subtype.getLocale();
638 + applicableSubtype.getMode() + "," + applicableSubtype.getLocale());
/frameworks/base/services/core/java/com/android/server/
H A DTextServicesManagerService.java375 subtype.getLocale());
455 final String localeString = currentInputMethodSubtype.getLocale();
471 final String scsLocale = scs.getLocale();
484 + ", " + scs.getLocale());
779 pw.print(" "); pw.print("locale="); pw.println(st.getLocale());
H A DInputMethodManagerService.java1717 && (nonAuxSubtype.getLocale().equals(auxSubtype.getLocale())
2418 : mCurrentSubtype.getLocale();
2430 if(keyboardSubtype.getLocale().equals(locale)) {
3357 mRes, enabledSubtypes, mode, mCurrentSubtype.getLocale(), false);
3374 mRes, subtypesForSearch, mode, mCurrentSubtype.getLocale(), false);
3406 + mostApplicableSubtype.getLocale());
3592 + subtype.getLocale() + ", " + subtype.getMode());
3634 out.attribute(null, ATTR_IME_SUBTYPE_LOCALE, subtype.getLocale());
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DRenderAction.java403 String locale = getParams().getLocale();
H A DLayout.java133 boolean isRtl = Bridge.isLocaleRtl(getParams().getLocale());

Completed in 1111 milliseconds

12