Lines Matching defs:localizations

657      * The localizations data provides information about the public
662 * list are arrays of localizations of the names of the public
665 * Strings being the localizations of the rule set names, in the
670 * @param localizations a list of localizations for the rule set
675 public RuleBasedNumberFormat(String description, String[][] localizations) {
677 init(description, localizations);
721 * The localizations data provides information about the public
726 * list are arrays of localizations of the names of the public
729 * Strings being the localizations of the rule set names, in the
734 * @param localizations a list of localizations for the rule set names in the description.
740 public RuleBasedNumberFormat(String description, String[][] localizations, ULocale locale) {
742 init(description, localizations);
788 String[][] localizations = null;
802 localizations = new String[locb.getSize()][];
803 for (int i = 0; i < localizations.length; ++i) {
804 localizations[i] = locb.get(i).getStringArray();
808 // might have description and no localizations, or no description...
811 init(description.toString(), localizations);
1561 private void init(String description, String[][] localizations) {
1562 initLocalizations(localizations);
1694 * Take the localizations array and create a Map from the locale strings to
1697 private void initLocalizations(String[][] localizations) {
1698 if (localizations != null) {
1699 publicRuleSetNames = localizations[0].clone();
1702 for (int i = 1; i < localizations.length; ++i) {
1703 String[] data = localizations[i];