Home | History | Annotate | Download | only in userdictionary

Lines Matching refs:mLocale

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)) {
210 new String[] { word, mLocale }, null /* sort order */);
258 locales.remove(mLocale); // mLocale may not be null
266 addLocaleDisplayNameToList(activity, localesList, mLocale);
267 if (!systemLocale.equals(mLocale)) {
274 if (!"".equals(mLocale)) {
275 // If mLocale is "", then we already inserted the "all languages" item, so don't do it
283 return mLocale;