HomeSort by relevance Sort by last modified time
    Searched refs:getLocale (Results 1 - 25 of 758) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/native/jni/src/dictionary/interface/
dictionary_header_structure_policy.h 52 virtual const std::vector<int> *getLocale() const = 0;
  /frameworks/base/core/tests/coretests/src/android/view/inputmethod/
InputMethodSubtypeTest.java 30 // InputMethodSubtype#getLocale() returns exactly the same string that is passed to the
32 assertEquals(localeString, createDummySubtype(localeString).getLocale());
34 // InputMethodSubtype#getLocale() should be preserved via marshaling.
35 assertEquals(createDummySubtype(localeString).getLocale(),
36 cloneViaParcel(createDummySubtype(localeString)).getLocale());
38 // InputMethodSubtype#getLocale() should be preserved via marshaling.
39 assertEquals(createDummySubtype(localeString).getLocale(),
40 cloneViaParcel(cloneViaParcel(createDummySubtype(localeString))).getLocale());
103 assertEquals("iw", subtypeIw.getLocale());
104 assertEquals("he", subtypeHe.getLocale());
    [all...]
  /external/libmojo/base/android/java/src/org/chromium/base/
LocaleUtils.java 26 public static String getLocale(Locale locale) {
50 return getLocale(Locale.getDefault());
  /external/apache-http/src/org/apache/http/
HttpResponse.java 74 * {@link #getLocale locale}.
96 * based on the current {@link #getLocale locale}. It can be set
153 Locale getLocale();
162 * @see #getLocale getLocale
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
SynchronousProfileProvider.java 44 protected Locale getLocale() {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UFormat.java 18 * additional ICU protocol, specifically, the <tt>getLocale()</tt>
59 public final ULocale getLocale(ULocale.Type type) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UFormat.java 17 * additional ICU protocol, specifically, the <tt>getLocale()</tt>
62 public final ULocale getLocale(ULocale.Type type) {
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
IHTMLReportContext.java 80 public Locale getLocale();
  /external/icu/icu4c/source/common/
locid.cpp 771 return getLocale(eROOT);
777 return getLocale(eENGLISH);
783 return getLocale(eFRENCH);
789 return getLocale(eGERMAN);
795 return getLocale(eITALIAN);
801 return getLocale(eJAPANESE);
807 return getLocale(eKOREAN);
813 return getLocale(eCHINESE);
819 return getLocale(eCHINA);
825 return getLocale(eTAIWAN)
    [all...]
locbased.cpp 18 Locale LocaleBased::getLocale(ULocDataLocaleType type, UErrorCode& status) const {
locbased.h 30 * A utility class that unifies the implementation of getLocale() by
60 Locale getLocale(ULocDataLocaleType type, UErrorCode& status) const;
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
HelpUrl.java 54 helpUri = Uri.parse(helpUri.toString().replace("%locale%", getLocale()));
64 private static String getLocale() {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
LanguageOnSpacebarUtils.java 53 final Locale locale = subtype.getLocale();
79 final Locale newLocale = subtype.getLocale();
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/action/
KlpActionTestsBase.java 34 SubtypeLocaleUtils.getDisplayLocaleOfSubtypeLocale(subtype.getLocale()));
  /external/icu/icu4c/source/common/unicode/
resbund.h 44 * 11/09/99 weiv Added getLocale(), fRealLocale, removed fRealLocaleID
312 * Same as getLocale().getName() .
443 * @deprecated ICU 2.8 Use getLocale(ULocDataLocaleType type, UErrorCode &status) overload instead.
446 getLocale(void) const;
460 getLocale(ULocDataLocaleType type, UErrorCode &status) const;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
NestedConfiguration.java 115 configuration.setLocale(values.getLocale(), true);
195 public Locale getLocale() {
197 return super.getLocale();
199 return mParent.getLocale();
465 configuration.getLocale(), false);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationTest.java 66 assertEquals(Locale.ANY, configuration.getLocale());
91 ConfigurationChooser.getLocaleLabel(null, configuration.getLocale(), true));
93 ConfigurationChooser.getLocaleLabel(null, configuration.getLocale(), false));
127 assertEquals(locale, copy.getLocale());
138 assertEquals(locale, copy.getLocale());
  /external/icu/icu4c/source/i18n/unicode/
dcfmtsym.h 280 inline Locale getLocale() const;
287 Locale getLocale(ULocDataLocaleType type, UErrorCode& status) const;
489 DecimalFormatSymbols::getLocale() const {
  /frameworks/base/core/java/android/view/textservice/
TextServicesManager.java 151 final String subtypeLocale = subtypeInUse.getLocale();
161 final String tempSubtypeLocale = subtype.getLocale();
177 mService.getSpellCheckerService(sci.getId(), subtypeInUse.getLocale(),
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
LanguageFragment.java 84 final String languageTag = localeInfo.getLocale().toLanguageTag();
94 if (localeInfo.getLocale().equals(currentLocale)) {
115 mNewLocale = mLocaleInfoMap.get(radioPreference.getKey()).getLocale();
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/
LayoutBase.java 58 public final Locale getLocale() { return mCustomizer.getLocale(); }
124 builder.toUpperCase(getLocale());
  /cts/tests/tests/text/src/android/text/style/cts/
LocaleSpanTest.java 38 assertEquals(locales.get(0), span.getLocale());
42 assertEquals(locales.get(0), cloned.getLocale());
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
Messages.java 146 private Locale getLocale()
308 Locale locale = getLocale();
  /external/icu/icu4c/source/i18n/
format.cpp 198 Format::getLocale(ULocDataLocaleType type, UErrorCode& status) const {
200 return locBased.getLocale(type, status);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
GlobalizationPreferencesTest.java 54 ULocale gpLocale0 = gp.getLocale(0);
61 ULocale gpLocale1 = gp.getLocale(1);
68 ULocale gpLocale2 = gp.getLocale(2);
75 ULocale calLocale = cal.getLocale(ULocale.VALID_LOCALE);
83 ULocale collLocale = coll.getLocale(ULocale.VALID_LOCALE);
91 ULocale brkLocale = brk.getLocale(ULocale.VALID_LOCALE);
100 ULocale dfLocale = df.getLocale(ULocale.VALID_LOCALE);
109 ULocale nfLocale = nf.getLocale(ULocale.VALID_LOCALE);
298 ULocale loc = gp.getLocale(j);
300 if (!gp.getLocale(j).toString().equals(RESULTS_LOCALEIDS[i][j]))
    [all...]

Completed in 1798 milliseconds

1 2 3 4 5 6 7 8 91011>>