D | NumberFormatTest.java | 730 class ParseCurrencyItem { in TestParseCurrency() class 740 …ParseCurrencyItem(String locStr, String desc, String curr, int numExPos, int numExVal, int curExPo… in TestParseCurrency() method in NumberFormatTest.ParseCurrencyItem 759 final ParseCurrencyItem[] parseCurrencyItems = { in TestParseCurrency() 760 … new ParseCurrencyItem( "en_US", "dollars2", "$2.00", 5, 2, 5, 2, "USD" ), in TestParseCurrency() 761 … new ParseCurrencyItem( "en_US", "dollars4", "$4", 2, 4, 2, 4, "USD" ), in TestParseCurrency() 762 … new ParseCurrencyItem( "en_US", "dollars9", "9\u00A0$", 0, 0, 0, 0, "" ), in TestParseCurrency() 763 … new ParseCurrencyItem( "en_US", "pounds3", "\u00A33.00", 0, 0, 5, 3, "GBP" ), in TestParseCurrency() 764 … new ParseCurrencyItem( "en_US", "pounds5", "\u00A35", 0, 0, 2, 5, "GBP" ), in TestParseCurrency() 765 … new ParseCurrencyItem( "en_US", "pounds7", "7\u00A0\u00A3", 0, 0, 0, 0, "" ), in TestParseCurrency() 766 … new ParseCurrencyItem( "en_US", "euros8", "\u20AC8", 0, 0, 2, 8, "EUR" ), in TestParseCurrency() [all …]
|