Home | History | Annotate | Download | only in inputmethod

Lines Matching refs:mLocale

57     private String mLocale;
96 mLocale = null == locale ? Locale.getDefault().toString() : locale;
108 outState.putString(EXTRA_LOCALE, mLocale);
162 // In this class we use the empty string to represent 'all locales' and mLocale cannot
166 TextUtils.isEmpty(mLocale) ? null : Utils.createLocaleFromString(mLocale));
178 // mLocale == "" indicates this is an entry for all languages. Here, mLocale can't
180 if ("".equals(mLocale)) {
187 new String[] { word, mLocale }, null /* sort order */);
235 locales.remove(mLocale); // mLocale may not be null
243 addLocaleDisplayNameToList(activity, localesList, mLocale);
244 if (!systemLocale.equals(mLocale)) {
251 if (!"".equals(mLocale)) {
252 // If mLocale is "", then we already inserted the "all languages" item, so don't do it
260 return mLocale;