Home | History | Annotate | Download | only in intltest

Lines Matching full:msgfmt

25 #include "unicode/msgfmt.h"
611 MessageFormat* msgFmt = new MessageFormat(t5, Locale("fr"), err);
615 delete msgFmt;
620 msgFmt->format(&testArgs3, 1, argNameResult, ignore, err);
628 delete msgFmt;
633 MessageFormat msgFmt(UNICODE_STRING_SIMPLE(
644 &msgFmt, args, 2, expected,
648 void TestMessageFormat::internalFormat(MessageFormat* msgFmt ,
657 msgFmt->format( args , numOfArgs , result, ignore, status);
673 MessageFormat* msgFmt = new MessageFormat(pattern, locale, status);
679 return msgFmt;
1730 MessageFormat *msgfmt = new MessageFormat(testformat, Locale("fr"), status);
1731 if (msgfmt == NULL || U_FAILURE(status)) {
1735 if (!msgfmt->usesNamedArguments()) {
1744 msgfmt->setFormat("set", cf, status);
1746 StringEnumeration *en = msgfmt->getFormatNames(status);
1769 msgfmt->adoptFormat("adopt", cfClone, status);
1772 delete msgfmt;
1774 msgfmt = new MessageFormat("'", status);
1775 if (msgfmt == NULL || U_FAILURE(status)) {
1779 if (msgfmt->usesNamedArguments()) {
1785 msgfmt->setFormat("formatName", cf, status);
1790 en = msgfmt->getFormatNames(status);
1796 delete msgfmt;