Home | History | Annotate | Download | only in inputmethod

Lines Matching refs:mLocale

57     private String mLocale;
90 updateLocale(mLocale);
96 mLocale = null == locale ? Locale.getDefault().toString() : locale;
108 outState.putString(EXTRA_LOCALE, mLocale);
160 // In this class we use the empty string to represent 'all locales' and mLocale cannot
164 TextUtils.isEmpty(mLocale) ? null : Utils.createLocaleFromString(mLocale));
176 // mLocale == "" indicates this is an entry for all languages. Here, mLocale can't
178 if ("".equals(mLocale)) {
185 new String[] { word, mLocale }, null /* sort order */);
233 locales.remove(mLocale); // mLocale may not be null
241 addLocaleDisplayNameToList(activity, localesList, mLocale);
242 if (!systemLocale.equals(mLocale)) {
249 if (!"".equals(mLocale)) {
250 // If mLocale is "", then we already inserted the "all languages" item, so don't do it
258 return mLocale;