Searched refs:formatChar (Results 1 – 6 of 6) sorted by relevance
211 char formatChar = matcher.group("typeChar").charAt(0); in addNamed() local212 addArgument(format, formatChar, arguments.get(argumentName)); in addNamed()213 formatParts.add("$" + formatChar); in addNamed()
1305 static UBool isNumeric(char16_t formatChar, int32_t count);
2378 private static final boolean isNumeric(char formatChar, int count) { in isNumeric() argument2379 return NUMERIC_FORMAT_CHARS.indexOf(formatChar) >= 0 in isNumeric()2380 || (count <= 2 && NUMERIC_FORMAT_CHARS2.indexOf(formatChar) >= 0); in isNumeric()
2364 private static final boolean isNumeric(char formatChar, int count) { in isNumeric() argument2365 return NUMERIC_FORMAT_CHARS.indexOf(formatChar) >= 0 in isNumeric()2366 || (count <= 2 && NUMERIC_FORMAT_CHARS2.indexOf(formatChar) >= 0); in isNumeric()
2198 UBool SimpleDateFormat::isNumeric(UChar formatChar, int32_t count) { in isNumeric() argument2199 return DateFormatSymbols::isNumericPatternChar(formatChar, count); in isNumeric()