Home | History | Annotate | Download | only in i18n

Lines Matching refs:MessageFormat

205             // the value is a pair of MessageFormat*
206 MessageFormat** patterns = (MessageFormat**)valueTok.pointer;
209 MessageFormat* pattern = patterns[style];
426 LocalPointer<MessageFormat> messageFormat(new MessageFormat(
431 MessageFormat** formatters =
432 (MessageFormat**)countToPatterns->get(pluralCountUniStr);
434 LocalMemory<MessageFormat *> localFormatters(
435 (MessageFormat **)uprv_malloc(UTMUTFMT_FORMAT_STYLE_COUNT*sizeof(MessageFormat*)));
448 formatters[style] = messageFormat.orphan();
521 MessageFormat** formatters = (MessageFormat**)countToPatterns->get(*pluralCount);
575 LocalPointer<MessageFormat> messageFormat(
576 new MessageFormat(UnicodeString(TRUE, pattern, ptLength), getLocale(err), err), err);
580 MessageFormat** formatters = (MessageFormat**)countToPatterns->get(srcPluralCount);
582 LocalMemory<MessageFormat *> localFormatters(
583 (MessageFormat**)uprv_malloc(UTMUTFMT_FORMAT_STYLE_COUNT*sizeof(MessageFormat*)));
593 formatters[style] = messageFormat.orphan();
617 MessageFormat** formatters = (MessageFormat**)countToPatterns->get(srcPluralCount);
627 LocalPointer<MessageFormat> messageFormat;
645 messageFormat.adoptInsteadAndCheckErrorCode(
646 new MessageFormat(UnicodeString(TRUE, pattern, -1), getLocale(err), err), err);
651 MessageFormat** formatters = (MessageFormat**)countToPatterns->get(srcPluralCount);
653 LocalMemory<MessageFormat *> localFormatters (
654 (MessageFormat**)uprv_malloc(UTMUTFMT_FORMAT_STYLE_COUNT*sizeof(MessageFormat*)));
666 formatters[style] = messageFormat.orphan();
699 const MessageFormat** value = (const MessageFormat**)valueTok.pointer;
722 const MessageFormat** value = (const MessageFormat**)valueTok.pointer;
723 MessageFormat** newVal = (MessageFormat**)uprv_malloc(UTMUTFMT_FORMAT_STYLE_COUNT*sizeof(MessageFormat*));
724 newVal[0] = (MessageFormat*)value[0]->clone();
725 newVal[1] = (MessageFormat*)value[1]->clone();
751 const MessageFormat** pattern1 = (const MessageFormat**)val1.pointer;
752 const MessageFormat** pattern2 = (const MessageFormat**)val2.pointer;