Searched refs:symbol (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/libcore/reflect/
H A DGenericSignatureParser.java86 char symbol; // 0: eof; else valid term symbol or first char of identifier. field in class:GenericSignatureParser
237 while (symbol > 0) {
249 if (symbol == '<') {
252 while ((symbol != '>') && (symbol > 0)) {
270 if (symbol == 'L' || symbol == '[' || symbol == 'T') {
274 while (symbol
[all...]
/libcore/luni/src/main/java/java/util/
H A DCurrency.java38 String symbol = ICU.getCurrencySymbol(Locale.US, currencyCode);
39 if (symbol == null) {
141 * Returns the localized currency symbol for this currency in {@code locale}.
149 * <p>If there is no locale-specific currency symbol, the ISO 4217 currency code is returned.
162 String symbol = ICU.getCurrencySymbol(locale, currencyCode);
163 return symbol != null ? symbol : currencyCode;
/libcore/luni/src/main/java/libcore/icu/
H A DNativeDecimalFormat.java624 private static native int getAttribute(long addr, int symbol); argument
625 private static native String getTextAttribute(long addr, int symbol); argument
637 private static native void setSymbol(long addr, int symbol, String str); argument
638 private static native void setAttribute(long addr, int symbol, int i); argument
640 private static native void setTextAttribute(long addr, int symbol, String str); argument
/libcore/luni/src/main/native/
H A Dlibcore_icu_NativeDecimalFormat.cpp155 UNumberFormatSymbol symbol = static_cast<UNumberFormatSymbol>(javaSymbol); local
156 unum_setSymbol(toUNumberFormat(addr), symbol, value.get(), value.size(), &status); local

Completed in 41 milliseconds