Home | History | Annotate | Download | only in userdictionary

Lines Matching refs:mLocale

65     private String mLocale;
108 updateLocale(mLocale);
114 mLocale = null == locale ? Locale.getDefault().toString() : locale;
126 outState.putString(EXTRA_LOCALE, mLocale);
181 // In this class we use the empty string to represent 'all locales' and mLocale cannot
184 FREQUENCY_FOR_USER_DICTIONARY_ADDS, newShortcut, TextUtils.isEmpty(mLocale) ?
185 null : LocaleUtils.constructLocaleFromString(mLocale));
197 // mLocale == "" indicates this is an entry for all languages. Here, mLocale can't
199 if ("".equals(mLocale)) {
206 new String[] { word, mLocale }, null /* sort order */);
254 locales.remove(mLocale); // mLocale may not be null
262 addLocaleDisplayNameToList(activity, localesList, mLocale);
263 if (!systemLocale.equals(mLocale)) {
270 if (!"".equals(mLocale)) {
271 // If mLocale is "", then we already inserted the "all languages" item, so don't do it
279 return mLocale;