Home | History | Annotate | Download | only in impl

Lines Matching defs:currency

19 import android.icu.util.Currency.CurrencyUsage;
22 * ICU's currency meta info data.
85 if (filter.currency != null) {
86 needed |= Currency;
128 String currency = null;
133 if ((needed & Currency) != 0) {
135 currency = currBundle.getString();
136 if (filter.currency != null && !filter.currency.equals(currency)) {
164 collector.collect(region, currency, from, to, i, tender);
205 public void collect(String region, String currency, long from, long to, int priority, boolean tender) {
206 result.add(new CurrencyInfo(region, currency, from, to, priority, tender));
225 String region, String currency, long from, long to, int priority, boolean tender) {
245 String region, String currency, long from, long to, int priority, boolean tender) {
246 result.add(currency);
251 return Currency;
261 private static final int Currency = 2;
268 * A bitmask of Region/Currency/Date indicating which features we collect.
276 * @param currency the currency code (null if ignored)
280 * @param tender true if currency is legal tender.
282 void collect(String region, String currency, long from, long to, int priority, boolean tender);