Lines Matching refs:fmt
220 …void expectParseCurrency(const NumberFormat &fmt, const UChar* currency, double amount, const char…
230 void expect2(NumberFormat& fmt, const Formattable& n, const UnicodeString& str);
232 void expect3(NumberFormat& fmt, const Formattable& n, const UnicodeString& str);
234 void expect2(NumberFormat& fmt, const Formattable& n, const char* str) { in expect2() argument
235 expect2(fmt, n, UnicodeString(str, "")); in expect2()
238 void expect2(NumberFormat* fmt, const Formattable& n, const UnicodeString& str, UErrorCode ec);
240 void expect2(NumberFormat* fmt, const Formattable& n, const char* str, UErrorCode ec) { in expect2() argument
241 expect2(fmt, n, UnicodeString(str, ""), ec); in expect2()
244 void expect(NumberFormat& fmt, const UnicodeString& str, const Formattable& n);
246 void expect(NumberFormat& fmt, const char *str, const Formattable& n) { in expect() argument
247 expect(fmt, UnicodeString(str, ""), n); in expect()
250 void expect(NumberFormat& fmt, const Formattable& n,
253 void expect(NumberFormat& fmt, const Formattable& n,
255 expect(fmt, n, UnicodeString(exp, ""), rt);
258 void expect(NumberFormat* fmt, const Formattable& n,
261 void expect(NumberFormat* fmt, const Formattable& n, in expect() argument
263 expect(fmt, n, UnicodeString(exp, ""), rt, errorCode); in expect()
266 void expect(NumberFormat* fmt, const Formattable& n, in expect() argument
268 expect(fmt, n, exp, TRUE, errorCode); in expect()
271 void expect(NumberFormat* fmt, const Formattable& n, in expect() argument
273 expect(fmt, n, UnicodeString(exp, ""), TRUE, errorCode); in expect()
279 void expectPad(DecimalFormat& fmt, const UnicodeString& pat,
282 void expectPad(DecimalFormat& fmt, const char *pat, in expectPad() argument
284 expectPad(fmt, UnicodeString(pat, ""), pos, width, pad); in expectPad()
287 void expectPad(DecimalFormat& fmt, const UnicodeString& pat,
290 void expectPad(DecimalFormat& fmt, const char *pat, in expectPad() argument
292 expectPad(fmt, UnicodeString(pat, ""), pos, width, pad); in expectPad()
295 void expectPat(DecimalFormat& fmt, const UnicodeString& exp);
297 void expectPat(DecimalFormat& fmt, const char *exp) { in expectPat() argument
298 expectPat(fmt, UnicodeString(exp, "")); in expectPat()
301 void expectPad(DecimalFormat& fmt, const UnicodeString& pat,
304 void expectPad(DecimalFormat& fmt, const char *pat, in expectPad() argument
306 expectPad(fmt, pat, pos, 0, (UChar)0); in expectPad()
309 void expect_rbnf(NumberFormat& fmt, const UnicodeString& str, const Formattable& n);
311 void expect_rbnf(NumberFormat& fmt, const Formattable& n,