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

1 2 3

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
WordListInfo.java 24 public final String mLocale;
27 mLocale = locale;
UserHistoryDictionary.java 71 private final String mLocale;
105 mLocale = locale;
107 if (mLocale != null && mLocale.length() > 1) {
197 new UpdateBinaryTask(mBigramList, mLocale, this, mPrefs, getContext()).execute();
216 Log.w(TAG, "Start stress in loading: " + mLocale);
222 final long last = Settings.readLastUserHistoryWriteTime(mPrefs, mLocale);
226 final String fileName = NAME + "." + mLocale + ".dict";
281 + mLocale + ", " + diff + "ms. load " + profTotal + "entries.");
293 private final String mLocale;
    [all...]
RecapitalizeStatus.java 64 private Locale mLocale;
83 mLocale = locale;
133 mStringAfter = mStringBefore.toLowerCase(mLocale);
137 mLocale);
140 mStringAfter = mStringBefore.toUpperCase(mLocale);
UserBinaryDictionary.java 67 final private String mLocale;
80 mLocale = USER_DICTIONARY_ALL_LANGUAGES;
82 mLocale = locale;
147 TextUtils.isEmpty(mLocale) ? new String[] {} : mLocale.split("_", 3);
218 if (USER_DICTIONARY_ALL_LANGUAGES == mLocale) {
221 locale = LocaleUtils.constructLocaleFromString(mLocale);
DictionaryInfoUtils.java 57 public final Locale mLocale;
64 mLocale = locale;
72 values.put(LOCALE_COLUMN, mLocale.toString());
305 if (info.mLocale.equals(newElement.mLocale)) {
335 if (!dictionaryInfo.mLocale.equals(locale)) continue;
356 if (!dictionaryInfo.mLocale.equals(locale)) continue;
  /frameworks/base/core/java/android/text/style/
LocaleSpan.java 30 private final Locale mLocale;
38 mLocale = locale;
42 mLocale = new Locale(src.readString(), src.readString(), src.readString());
57 dest.writeString(mLocale.getLanguage());
58 dest.writeString(mLocale.getCountry());
59 dest.writeString(mLocale.getVariant());
68 return mLocale;
73 apply(ds, mLocale);
78 apply(paint, 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());
Address.java 36 private Locale mLocale;
64 mLocale = locale;
71 return mLocale;
534 parcel.writeString(mLocale.getLanguage());
535 parcel.writeString(mLocale.getCountry());
  /frameworks/base/core/java/android/text/method/
AllCapsTransformationMethod.java 34 private Locale mLocale;
37 mLocale = context.getResources().getConfiguration().locale;
43 return source != null ? source.toString().toUpperCase(mLocale) : null;
  /frameworks/support/v4/ics/android/support/v4/view/
PagerTitleStripIcs.java 34 private Locale mLocale;
37 mLocale = context.getResources().getConfiguration().locale;
43 return source != null ? source.toString().toUpperCase(mLocale) : null;
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
CompatTextView.java 66 private final Locale mLocale;
69 mLocale = context.getResources().getConfiguration().locale;
74 return source != null ? source.toString().toUpperCase(mLocale) : null;
  /packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionaryAddWordContents.java 57 private String mLocale;
82 mLocale = null == locale ? Locale.getDefault().toString() : locale;
94 outState.putString(EXTRA_LOCALE, mLocale);
144 // In this class we use the empty string to represent 'all locales' and mLocale cannot
148 TextUtils.isEmpty(mLocale) ? null : Utils.createLocaleFromString(mLocale));
160 // mLocale == "" indicates this is an entry for all languages. Here, mLocale can't
162 if ("".equals(mLocale)) {
169 new String[] { word, mLocale }, null /* sort order */)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryAddWordContents.java 65 private String mLocale;
100 mLocale = null == locale ? Locale.getDefault().toString() : locale;
112 outState.putString(EXTRA_LOCALE, mLocale);
165 // In this class we use the empty string to represent 'all locales' and mLocale cannot
168 FREQUENCY_FOR_USER_DICTIONARY_ADDS, newShortcut, TextUtils.isEmpty(mLocale) ?
169 null : LocaleUtils.constructLocaleFromString(mLocale));
181 // mLocale == "" indicates this is an entry for all languages. Here, mLocale can't
183 if ("".equals(mLocale)) {
190 new String[] { word, mLocale }, null /* sort order */)
    [all...]
  /frameworks/av/media/libmedia/
MediaScanner.cpp 30 : mLocale(NULL), mSkipList(NULL), mSkipIndex(NULL) {
41 if (mLocale) {
42 free(mLocale);
43 mLocale = NULL;
46 mLocale = strdup(locale);
51 return mLocale;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DefaultCallLogInsertionHelper.java 43 private final Locale mLocale;
54 mLocale = context.getResources().getConfiguration().locale;
98 structuredPhoneNumber, mLocale);
ContactLocaleUtils.java 399 private final Locale mLocale;
405 mLocale = Locale.getDefault();
407 mLocale = locale;
409 mLanguage = mLocale.getLanguage().toLowerCase();
411 mUtils = new JapaneseContactUtils(mLocale);
412 } else if (mLocale.equals(Locale.CHINA)) {
413 mUtils = new SimplifiedChineseContactUtils(mLocale);
415 mUtils = new ContactLocaleUtilsBase(mLocale);
417 Log.i(TAG, "AddressBook Labels [" + mLocale.toString() + "]: "
422 return mLocale.equals(locale)
    [all...]
PostalSplitter.java 30 private final Locale mLocale;
63 mLocale = locale;
90 if (mLocale != null &&
91 JAPANESE_LANGUAGE.equals(mLocale.getLanguage()) &&
  /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});
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DictionaryPool.java 46 private final Locale mLocale;
76 mLocale = locale;
95 return mService.createDictAndKeyboard(mLocale);
101 return mService.createDictAndKeyboard(mLocale);
AndroidWordLevelSpellCheckerSession.java 49 private Locale mLocale;
116 mLocale = LocaleUtils.constructLocaleFromString(localeString);
117 mScript = AndroidSpellCheckerService.getScriptFromLocale(mLocale);
224 final String lowerCaseText = text.toLowerCase(mLocale);
231 return dict.isValidWord(StringUtils.capitalizeFirstAndDowncaseRest(lowerCaseText, mLocale));
321 capitalizeType, mLocale);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
Clock.java 58 private Locale mLocale;
126 if (! newLocale.equals(mLocale)) {
127 mLocale = newLocale;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
WordListMetadata.java 42 public final String mLocale;
66 mLocale = locale;
119 sb.append("\nLocale : ").append(mLocale);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
LocaleMenuListener.java 48 private final Locale mLocale;
56 mLocale = locale;
63 mConfigChooser.selectLocale(mLocale);
  /frameworks/av/include/media/
mediascanner.h 64 char *mLocale;
104 // default encoding based on MediaScanner::mLocale string
  /frameworks/base/core/java/android/view/
AccessibilityIterators.java 73 private Locale mLocale;
85 mLocale = locale;
151 if (!mLocale.equals(locale)) {
152 mLocale = locale;

Completed in 1325 milliseconds

1 2 3