Home
last modified time | relevance | path

Searched refs:mUsesGermanRules (Results 1 – 3 of 3) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
DSpacingAndPunctuations.java44 public final boolean mUsesGermanRules; field in SpacingAndPunctuations
71 mUsesGermanRules = Locale.GERMAN.getLanguage().equals(locale.getLanguage()); in SpacingAndPunctuations()
92 mUsesGermanRules = model.mUsesGermanRules; in SpacingAndPunctuations()
152 sb.append("" + mUsesGermanRules); in dump()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/settings/
DSpacingAndPunctuationsTests.java406 assertFalse(ENGLISH.mUsesGermanRules); in testUsesGermanRules()
407 assertFalse(FRENCH.mUsesGermanRules); in testUsesGermanRules()
408 assertTrue(GERMAN.mUsesGermanRules); in testUsesGermanRules()
409 assertTrue(SWISS_GERMAN.mUsesGermanRules); in testUsesGermanRules()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DCapsModeUtils.java159 if (spacingAndPunctuations.mUsesGermanRules) { in getCapsMode()
286 } else if (Character.isDigit(c) && spacingAndPunctuations.mUsesGermanRules) { in getCapsMode()