Lines Matching defs:ARGS
640 Formattable args[] = { (int32_t)3, UNICODE_STRING_SIMPLE("x") };
642 &msgFmt, args, 2, expected,
647 Formattable* args , int32_t numOfArgs ,
655 msgFmt->format( args , numOfArgs , result, ignore, status);
1475 const Formattable ARGS[] = {
1489 const int32_t ARGS_LENGTH = sizeof(ARGS) / sizeof(ARGS[0]);
1490 Formattable ARGS_OBJ(ARGS, ARGS_LENGTH);
1534 Formattable args[1];
1548 numFmt->parse(values[j], args[0], ec);
1554 fmt->format(args, 1, result, fp, ec);
1555 logln((UnicodeString)"value: " + toString(args[0]) + " --> " + result + UnicodeString(" ec: ") + u_errorName(ec));
1561 errln((UnicodeString)"parse returned " + count + " args");
1562 } else if (parseResult[0] != args[0]) {
1563 errln((UnicodeString)"parsed argument " + toString(parseResult[0]) + " != " + toString(args[0]));
1849 Formattable args[1] = { (int32_t)2 };
1853 m.format(args, 1, result, ignore, errorCode));
1857 args[0].setLong(3);
1860 m.format(&argName, args, 1, result, errorCode));
1874 Formattable args[1] = { (int32_t)21 };
1878 m.format(args, 1, result, ignore, errorCode), TRUE);
1880 args[0].setLong(2);
1882 m.format(args, 1, result.remove(), ignore, errorCode), TRUE);
1884 args[0].setLong(1);
1886 m.format(args, 1, result.remove(), ignore, errorCode), TRUE);
1888 args[0].setLong(3);
1890 m.format(args, 1, result.remove(), ignore, errorCode), TRUE);