Searched refs:formatChar (Results 1 – 5 of 5) 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()
1300 static UBool isNumeric(char16_t formatChar, int32_t count);
2342 private static final boolean isNumeric(char formatChar, int count) { in isNumeric() argument2343 return NUMERIC_FORMAT_CHARS.indexOf(formatChar) >= 0 in isNumeric()2344 || (count <= 2 && NUMERIC_FORMAT_CHARS2.indexOf(formatChar) >= 0); in isNumeric()
2330 private static final boolean isNumeric(char formatChar, int count) { in isNumeric() argument2331 return NUMERIC_FORMAT_CHARS.indexOf(formatChar) >= 0 in isNumeric()2332 || (count <= 2 && NUMERIC_FORMAT_CHARS2.indexOf(formatChar) >= 0); in isNumeric()
2110 UBool SimpleDateFormat::isNumeric(UChar formatChar, int32_t count) { in isNumeric() argument2111 return DateFormatSymbols::isNumericPatternChar(formatChar, count); in isNumeric()