Home
last modified time | relevance | path

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

/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/test/
DCheckNumbers.java82 boolean isPOSIX; field in CheckNumbers
99 isPOSIX = cldrFileToCheck.getLocaleID().indexOf("POSIX") >= 0; in setCldrFileToCheck()
311 String pattern = getCanonicalPattern(value, type, zeroCount, isPOSIX); in handleCheck()
583 …ic String getCanonicalPattern(String inpattern, NumericType type, int zeroCount, boolean isPOSIX) { in getCanonicalPattern() argument
589 int[] digits = isPOSIX ? type.getPosixDigitCount() : type.getDigitCount(); in getCanonicalPattern()
DDisplayAndInputProcessor.java998 public static String getCanonicalPattern(String inpattern, NumericType type, boolean isPOSIX) { in getCanonicalPattern() argument
1009 int[] digits = isPOSIX ? type.posixDigitCount : type.digitCount; in getCanonicalPattern()
DCLDRTest.java144 boolean isPOSIX = locale.indexOf("POSIX") >= 0; in TestCurrencyFormats()
152 String pattern = DisplayAndInputProcessor.getCanonicalPattern(value, type, isPOSIX); in TestCurrencyFormats()