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

1 2 3 4 5 6 7 8 9

  /libcore/include/
ScopedIcuLocale.h 27 mLocale.setToBogus();
39 mLocale = icu::Locale::createFromName(localeName.c_str());
46 return !mLocale.isBogus();
50 return mLocale;
55 icu::Locale mLocale;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WordListInfo.java 24 public final String mLocale;
28 mLocale = locale;
DictionaryFacilitatorLruCache.java 39 private Locale mLocale;
69 if (mLocale != null) {
71 mDictionaryFacilitator.resetDictionaries(mContext, mLocale,
93 mLocale = locale;
DictionaryStats.java 29 public final Locale mLocale;
42 mLocale = locale;
54 mLocale = locale;
RichInputMethodSubtype.java 60 private final Locale mLocale;
68 mLocale = mappedLocale != null ? mappedLocale : mOriginalLocale;
131 return mSubtype.equals(other.mSubtype) && mLocale.equals(other.mLocale);
136 return mSubtype.hashCode() + mLocale.hashCode();
141 return "Multi-lingual subtype: " + mSubtype + ", " + mLocale;
146 return mLocale;
156 return LocaleUtils.isRtlLanguage(mLocale);
  /frameworks/base/location/java/android/location/
GeocoderParams.java 36 private Locale mLocale;
49 mLocale = locale;
57 return mLocale;
74 gp.mLocale = new Locale(language, country, variant);
89 parcel.writeString(mLocale.getLanguage());
90 parcel.writeString(mLocale.getCountry());
91 parcel.writeString(mLocale.getVariant());
  /frameworks/base/core/java/android/speech/tts/
Voice.java 64 private final Locale mLocale;
77 this.mLocale = locale;
86 this.mLocale = (Locale)in.readSerializable();
97 dest.writeSerializable(mLocale);
126 return mLocale;
189 .append(", locale: ").append(mLocale)
203 result = prime * result + ((mLocale == null) ? 0 : mLocale.hashCode());
232 if (mLocale == null) {
233 if (other.mLocale != null)
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/text/
AllCapsTransformationMethod.java 35 private Locale mLocale;
38 mLocale = context.getResources().getConfiguration().locale;
43 return source != null ? source.toString().toUpperCase(mLocale) : null;
  /packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionaryCursorLoader.java 61 private final String mLocale;
65 mLocale = locale;
72 if ("".equals(mLocale)) {
79 final String queryLocale = null != mLocale ? mLocale : Locale.getDefault().toString();
UserDictionaryAddWordContents.java 56 private String mLocale;
95 mLocale = null == locale ? Locale.getDefault().toString() : locale;
107 outState.putString(EXTRA_LOCALE, mLocale);
161 // In this class we use the empty string to represent 'all locales' and mLocale cannot
165 TextUtils.isEmpty(mLocale) ? null : Utils.createLocaleFromString(mLocale));
177 // mLocale == "" indicates this is an entry for all languages. Here, mLocale can't
179 if ("".equals(mLocale)) {
186 new String[] { word, mLocale }, null /* sort order */)
    [all...]
  /frameworks/av/media/libmedia/
MediaScannerClient.cpp 36 mLocale = locale; // not currently used
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
I18Name.java 47 private final Locale mLocale;
53 mLocale = locale;
90 return mLocale;
120 return mText + ':' + mLocale.getLanguage();
  /frameworks/base/core/java/android/text/method/
AllCapsTransformationMethod.java 39 private Locale mLocale;
42 mLocale = context.getResources().getConfiguration().getLocales().get(0);
61 locale = mLocale;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidWordLevelSpellCheckerSession.java 54 private Locale mLocale;
117 mLocale = (null == localeString) ? null
119 mScript = ScriptUtils.getScriptFromSpellCheckerLocale(mLocale);
195 if (mService.isValidWord(mLocale, text)) return true;
201 final String lowerCaseText = text.toLowerCase(mLocale);
202 if (mService.isValidWord(mLocale, lowerCaseText)) return true;
208 return mService.isValidWord(mLocale,
209 StringUtils.capitalizeFirstAndDowncaseRest(lowerCaseText, mLocale));
232 if (!mService.hasMainDictionaryForLocale(mLocale)) {
244 if (!mService.isValidWord(mLocale, word))
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryAddWordContents.java 67 private String mLocale;
110 updateLocale(mLocale);
116 mLocale = null == locale ? Locale.getDefault().toString() : locale;
128 outState.putString(EXTRA_LOCALE, mLocale);
185 // In this class we use the empty string to represent 'all locales' and mLocale cannot
188 FREQUENCY_FOR_USER_DICTIONARY_ADDS, newShortcut, TextUtils.isEmpty(mLocale) ?
189 null : LocaleUtils.constructLocaleFromString(mLocale));
201 // mLocale == "" indicates this is an entry for all languages. Here, mLocale can't
203 if ("".equals(mLocale)) {
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/customizer/
LayoutCustomizer.java 31 private final Locale mLocale;
36 public LayoutCustomizer(final Locale locale) { mLocale = locale; }
38 public final Locale getLocale() { return mLocale; }
  /development/samples/SpellChecker/SampleSpellCheckerService/src/com/example/android/samplespellcheckerservice/
SampleSpellCheckerService.java 44 private String mLocale;
47 mLocale = getLocale();
72 new String[] {"aaa", "bbb", "Candidate for " + input, mLocale});
128 new String[] {"aaa", "bbb", "Candidate for " + input, mLocale});
  /frameworks/base/core/java/com/android/internal/app/
LocaleStore.java 39 private final Locale mLocale;
54 this.mLocale = locale;
84 return mLocale;
120 LocaleHelper.getDisplayName(mLocale, mLocale, true /* sentence case */);
127 mFullCountryNameNative = LocaleHelper.getDisplayCountry(mLocale, mLocale);
134 return LocaleHelper.getDisplayCountry(mLocale);
144 return LocaleHelper.getDisplayName(mLocale, true /* sentence case */);
150 .setLocale(mLocale)
    [all...]
  /frameworks/av/media/libmedia/include/media/
mediascanner.h 90 char *mLocale;
123 // default encoding from MediaScanner::mLocale
124 String8 mLocale;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
RecapitalizeStatus.java 75 private Locale mLocale;
100 mLocale = locale;
162 mStringAfter = mStringBefore.toLowerCase(mLocale);
166 mLocale);
169 mStringAfter = mStringBefore.toUpperCase(mLocale);
  /packages/apps/Car/LatinIME/src/com/android/inputmethod/latin/
CarLatinIME.java 81 private Locale mLocale;
204 if (mLocale == null) {
205 mLocale = this.getResources().getConfiguration().locale;
207 return mLocale;
223 mLocale = configuration.locale;
342 txt = txt.toUpperCase(mLocale);
356 commitText = commitText.toUpperCase(mLocale);
409 commitText = commitText.toUpperCase(mLocale);
448 return String.valueOf(current).toLowerCase(mLocale).charAt(0);
450 return String.valueOf(current).toUpperCase(mLocale).charAt(0)
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/header/
header_policy.h 40 mLocale(readLocale()),
65 attributeMap)), mSize(0), mAttributeMap(*attributeMap), mLocale(locale),
87 mAttributeMap(headerPolicy->mAttributeMap), mLocale(headerPolicy->mLocale),
103 mAttributeMap(), mLocale(CharUtils::EMPTY_STRING), mMultiWordCostMultiplier(0.0f),
210 return &mLocale;
246 const std::vector<int> mLocale;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DefaultCallLogInsertionHelper.java 51 private final Locale mLocale;
62 mLocale = context.getResources().getConfiguration().locale;
121 structuredPhoneNumber, mLocale);
  /frameworks/base/core/java/android/text/
InputFilter.java 59 private final Locale mLocale;
62 mLocale = null;
71 mLocale = locale;
94 final CharSequence upper = TextUtils.toUpperCase(mLocale, wrapper, copySpans);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
CaptionSettingsFragment.java 83 private Locale mLocale;
144 mLocale = mCaptioningManager.getLocale();
155 if (mLocale != null) {
157 activity, mLocale, R.string.captioning_preview_text);

Completed in 1056 milliseconds

1 2 3 4 5 6 7 8 9