OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:systemLocale
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionaryAddWordContents.java
218
final String
systemLocale
= Locale.getDefault().toString();
220
locales.remove(
systemLocale
); // system locale may not be null
226
if (!
systemLocale
.equals(mLocale)) {
227
addLocaleDisplayNameToList(activity, localesList,
systemLocale
);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SubtypeSwitcher.java
162
final Locale
systemLocale
= mResources.getConfiguration().locale;
163
final boolean sameLocale =
systemLocale
.equals(newLocale);
164
final boolean sameLanguage =
systemLocale
.getLanguage().equals(newLocale.getLanguage());
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryAddWordContents.java
239
final String
systemLocale
= Locale.getDefault().toString();
241
locales.remove(
systemLocale
); // system locale may not be null
247
if (!
systemLocale
.equals(mLocale)) {
248
addLocaleDisplayNameToList(activity, localesList,
systemLocale
);
UserDictionarySettings.java
198
final Locale
systemLocale
= getResources().getConfiguration().locale;
199
if (!TextUtils.isEmpty(mLocale) && !mLocale.equals(
systemLocale
.toString())) {
/frameworks/base/core/java/com/android/internal/inputmethod/
InputMethodUtils.java
224
final String
systemLocale
= res.getConfiguration().locale.toString();
225
if (TextUtils.isEmpty(
systemLocale
)) return new ArrayList<InputMethodSubtype>();
251
// We just call
systemLocale
.startsWith(locale) in this function because there is no
254
if (
systemLocale
.startsWith(locale)) {
258
if (
systemLocale
.equals(applicableSubtype.getLocale())) continue;
259
if (!
systemLocale
.equals(locale)) continue;
280
res, subtypes, SUBTYPE_MODE_KEYBOARD,
systemLocale
, true);
[
all
...]
Completed in 120 milliseconds