Lines Matching full:msgfmt
25 #include "unicode/msgfmt.h"
600 MessageFormat* msgFmt = new MessageFormat(t5, Locale("fr"), err);
604 delete msgFmt;
609 msgFmt->format(&testArgs3, 1, argNameResult, ignore, err);
617 delete msgFmt;
620 void TestMessageFormat::internalFormat(MessageFormat* msgFmt ,
629 msgFmt->format( args , numOfArgs , result, ignore, status);
645 MessageFormat* msgFmt = new MessageFormat(pattern, locale, status);
651 return msgFmt;
1562 MessageFormat *msgfmt = new MessageFormat(testformat, Locale("fr"), status);
1563 if (msgfmt == NULL || U_FAILURE(status)) {
1567 if (!msgfmt->usesNamedArguments()) {
1576 msgfmt->setFormat("set", cf, status);
1578 StringEnumeration *en = msgfmt->getFormatNames(status);
1598 msgfmt->adoptFormat("adopt", &cf, status);
1601 delete msgfmt;
1603 msgfmt = new MessageFormat("'", status);
1604 if (msgfmt == NULL || U_FAILURE(status)) {
1608 if (msgfmt->usesNamedArguments()) {
1612 msgfmt->setFormat("formatName", cf, status);
1617 en = msgfmt->getFormatNames(status);
1623 delete msgfmt;