Searched defs:numericCode (Results 1 - 2 of 2) sorted by relevance
| /openjdk7/jdk/test/java/util/Currency/ |
| H A D | ValidateISO4217.java | 185 int numericCode, int digits, int index) { 189 testCurrencyDefined(currencyCode, numericCode, digits); 214 static void testCurrencyDefined(String currencyCode, int numericCode, int digits) { argument 218 if (currency.getNumericCode() != numericCode) { 220 numericCode + "; got: " + currency.getNumericCode()); 184 testCountryCurrency(String country, String currencyCode, int numericCode, int digits, int index) argument
|
| /openjdk7/jdk/src/share/classes/java/util/ |
| H A D | Currency.java | 97 transient private final int numericCode; field in class:Currency 268 private Currency(String currencyCode, int defaultFractionDigits, int numericCode) { argument 271 this.numericCode = numericCode; 288 int numericCode) { 312 numericCode = (tableEntry & NUMERIC_CODE_MASK) >> NUMERIC_CODE_SHIFT; 323 numericCode = otherCurrenciesNumericCode[index / 4]; 327 instance = new Currency(currencyCode, defaultFractionDigits, numericCode); 371 int numericCode = (tableEntry & NUMERIC_CODE_MASK) >> NUMERIC_CODE_SHIFT; 374 return getInstance(sb.toString(), defaultFractionDigits, numericCode); 287 getInstance(String currencyCode, int defaultFractionDigits, int numericCode) argument [all...] |
Completed in 24 milliseconds