Searched refs:isRtlLanguage (Results 1 - 5 of 5) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DSubtypeLocaleUtils.java316 public static boolean isRtlLanguage(final Locale locale) { method in class:SubtypeLocaleUtils
321 public static boolean isRtlLanguage(final InputMethodSubtype subtype) { method in class:SubtypeLocaleUtils
322 return isRtlLanguage(getSubtypeLocale(subtype));
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
H A DSuggestionStripView.java107 public void setLayoutDirection(final boolean isRtlLanguage) { argument
108 final int layoutDirection = isRtlLanguage ? ViewCompat.LAYOUT_DIRECTION_RTL
213 public void setSuggestions(final SuggestedWords suggestedWords, final boolean isRtlLanguage) { argument
215 mStripVisibilityGroup.setLayoutDirection(isRtlLanguage);
H A DSuggestionStripLayoutHelper.java582 final boolean isRtlLanguage = (ViewCompat.getLayoutDirection(addToDictionaryStrip)
584 final String arrow = isRtlLanguage ? RIGHTWARDS_ARROW : LEFTWARDS_ARROW;
585 final boolean isRtlSystem = SubtypeLocaleUtils.isRtlLanguage(
588 hintText = (isRtlLanguage == isRtlSystem) ? (arrow + hint) : (hint + arrow);
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
H A DSubtypeLocaleUtilsTests.java305 assertTrue(subtypeName, SubtypeLocaleUtils.isRtlLanguage(subtype));
307 assertFalse(subtypeName, SubtypeLocaleUtils.isRtlLanguage(subtype));
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DLatinIME.java1510 SubtypeLocaleUtils.isRtlLanguage(mSubtypeSwitcher.getCurrentSubtype()));

Completed in 77 milliseconds