Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
DSpacingAndPunctuations.java43 public final boolean mUsesAmericanTypography; field in SpacingAndPunctuations
70 mUsesAmericanTypography = Locale.ENGLISH.getLanguage().equals(locale.getLanguage()); in SpacingAndPunctuations()
91 mUsesAmericanTypography = model.mUsesAmericanTypography; in SpacingAndPunctuations()
150 sb.append("" + mUsesAmericanTypography); in dump()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/settings/
DSpacingAndPunctuationsTests.java395 assertTrue(ENGLISH.mUsesAmericanTypography); in testUsesAmericanTypography()
396 assertTrue(UNITED_STATES.mUsesAmericanTypography); in testUsesAmericanTypography()
397 assertTrue(UNITED_KINGDOM.mUsesAmericanTypography); in testUsesAmericanTypography()
398 assertTrue(INDIA_ENGLISH.mUsesAmericanTypography); in testUsesAmericanTypography()
399 assertFalse(FRENCH.mUsesAmericanTypography); in testUsesAmericanTypography()
400 assertFalse(GERMAN.mUsesAmericanTypography); in testUsesAmericanTypography()
401 assertFalse(SWISS_GERMAN.mUsesAmericanTypography); in testUsesAmericanTypography()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DCapsModeUtils.java201 if (spacingAndPunctuations.mUsesAmericanTypography) { in getCapsMode()