Home
last modified time | relevance | path

Searched refs:newFormats (Results 1 – 5 of 5) sorted by relevance

/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DMessageFormat.java614 public void setFormatsByArgumentIndex(Format[] newFormats) { in setFormatsByArgumentIndex() argument
615 messageFormat.setFormatsByArgumentIndex(newFormats); in setFormatsByArgumentIndex()
667 public void setFormats(Format[] newFormats) { in setFormats() argument
668 messageFormat.setFormats(newFormats); in setFormats()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DMessageFormat.java579 public void setFormatsByArgumentIndex(Format[] newFormats) { in setFormatsByArgumentIndex() argument
587 if (argNumber < newFormats.length) { in setFormatsByArgumentIndex()
588 setCustomArgStartFormat(partIndex, newFormats[argNumber]); in setFormatsByArgumentIndex()
613 public void setFormatsByArgumentName(Map<String, Format> newFormats) { in setFormatsByArgumentName() argument
616 if (newFormats.containsKey(key)) { in setFormatsByArgumentName()
617 setCustomArgStartFormat(partIndex, newFormats.get(key)); in setFormatsByArgumentName()
644 public void setFormats(Format[] newFormats) { in setFormats() argument
647 formatNumber < newFormats.length && in setFormats()
649 setCustomArgStartFormat(partIndex, newFormats[formatNumber]); in setFormats()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessageFormat.java594 public void setFormatsByArgumentIndex(Format[] newFormats) { in setFormatsByArgumentIndex() argument
602 if (argNumber < newFormats.length) { in setFormatsByArgumentIndex()
603 setCustomArgStartFormat(partIndex, newFormats[argNumber]); in setFormatsByArgumentIndex()
629 public void setFormatsByArgumentName(Map<String, Format> newFormats) { in setFormatsByArgumentName() argument
632 if (newFormats.containsKey(key)) { in setFormatsByArgumentName()
633 setCustomArgStartFormat(partIndex, newFormats.get(key)); in setFormatsByArgumentName()
661 public void setFormats(Format[] newFormats) { in setFormats() argument
664 formatNumber < newFormats.length && in setFormats()
666 setCustomArgStartFormat(partIndex, newFormats[formatNumber]); in setFormats()
/external/icu/icu4c/source/i18n/
Dmsgfmt.cpp610 MessageFormat::adoptFormats(Format** newFormats, in adoptFormats() argument
612 if (newFormats == NULL || count < 0) { in adoptFormats()
628 setCustomArgStartFormat(partIndex, newFormats[formatNumber], status); in adoptFormats()
633 delete newFormats[formatNumber]; in adoptFormats()
643 MessageFormat::setFormats(const Format** newFormats, in setFormats() argument
645 if (newFormats == NULL || count < 0) { in setFormats()
661 if (newFormats[formatNumber] != NULL) { in setFormats()
662 newFormat = newFormats[formatNumber]->clone(); in setFormats()
/external/icu/icu4c/source/i18n/unicode/
Dmsgfmt.h529 virtual void setFormats(const Format** newFormats, int32_t cnt);