HomeSort by relevance Sort by last modified time
    Searched refs:getWithFallback (Results 1 - 25 of 31) sorted by null

1 2

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CalendarData.java 50 return fBundle.getWithFallback("calendar/" + fMainType + "/" + key);
53 return fBundle.getWithFallback("calendar/" + fFallbackType + "/" + key);
72 return fBundle.getWithFallback("calendar/" + fMainType + "/" + key + "/format/" + subKey);
75 return fBundle.getWithFallback("calendar/" + fFallbackType + "/" + key + "/format/" + subKey);
94 return fBundle.getWithFallback("calendar/" + fMainType + "/" + key + "/" + contextKey + "/" + subKey);
97 return fBundle.getWithFallback("calendar/" + fFallbackType + "/" + key + "/" + contextKey + "/" + subKey);
117 return fBundle.getWithFallback("calendar/" + fMainType + "/" + key + "/" + set + "/" + contextKey + "/" + subKey);
120 return fBundle.getWithFallback("calendar/" + fFallbackType + "/" + key + "/" + set + "/" + contextKey + "/" + subKey);
CurrencyData.java 79 return DefaultInfo.getWithFallback(withFallback);
97 public static final CurrencyDisplayInfo getWithFallback(boolean fallback) {
RelativeDateFormat.java 250 ICUResourceBundle rdb = rb.getWithFallback("fields/day/relative");
282 ICUResourceBundle rdb = rb.getWithFallback("contextTransforms/relative");
TimeZoneNamesImpl.java 480 table = zoneStrings.getWithFallback(key);
522 table = zoneStrings.getWithFallback(key);
LocaleDisplayNamesImpl.java 176 contextTransformsBundle = (UResourceBundle)rb.getWithFallback("contextTransforms");
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
RelativeDateTimeFormatter.java 663 r.getWithFallback("calendar/gregorian/dayNames/stand-alone/wide")));
665 r.getWithFallback("calendar/gregorian/dayNames/stand-alone/short")));
667 r.getWithFallback("calendar/gregorian/dayNames/stand-alone/narrow")));
739 r.getWithFallback(path),
745 r.getWithFallback(pathShort),
751 r.getWithFallback(pathNarrow),
771 timeUnitBundle = timeUnitBundle.getWithFallback("relative");
787 r.getWithFallback(path),
791 r.getWithFallback(pathShort),
795 r.getWithFallback(pathNarrow)
    [all...]
ListFormatter.java 333 SimplePatternFormatter.compile(r.getWithFallback("listPattern/" + style + "/2").getString()),
334 SimplePatternFormatter.compile(r.getWithFallback("listPattern/" + style + "/start").getString()),
335 SimplePatternFormatter.compile(r.getWithFallback("listPattern/" + style + "/middle").getString()),
336 SimplePatternFormatter.compile(r.getWithFallback("listPattern/" + style + "/end").getString()),
CompactDecimalDataCache.java 138 r = r.getWithFallback(NUMBER_ELEMENTS);
151 ICUResourceBundle bundle = getWithFallback(r, LATIN_NUMBERING_SYSTEM, UResFlags.ANY);
152 shortDataBundle = getWithFallback(bundle, PATTERNS_SHORT_PATH, UResFlags.ANY);
201 private static ICUResourceBundle getWithFallback(
TimeUnitFormat.java 370 ICUResourceBundle unitsRes = resource.getWithFallback(resourceKey);
392 ICUResourceBundle oneUnitRes = unitsRes.getWithFallback(timeUnitName);
474 unitsRes = unitsRes.getWithFallback(resourceKey);
475 ICUResourceBundle oneUnitRes = unitsRes.getWithFallback(srcTimeUnitName);
MeasureFormat.java 764 ICUResourceBundle unitTypeRes = resource.getWithFallback(styleItem.resourceKey);
765 ICUResourceBundle compoundRes = unitTypeRes.getWithFallback("compound");
766 ICUResourceBundle perRes = compoundRes.getWithFallback("per");
787 ICUResourceBundle unitTypeRes = resource.getWithFallback(styleItem.resourceKey);
788 ICUResourceBundle unitsRes = unitTypeRes.getWithFallback(unit.getType());
789 ICUResourceBundle oneUnitRes = unitsRes.getWithFallback(unit.getSubtype());
    [all...]
DateTimePatternGenerator.java 162 // ICU4J getWithFallback does not work well when
164 // 2) getWithFallback is called multiple times for going down hierarchical resource path
165 // #9987 resolved the issue of alias table when full path is specified in getWithFallback,
168 ICUResourceBundle itemBundle = rb.getWithFallback("calendar/" + calendarTypeToUse + "/appendItems");
180 ICUResourceBundle itemBundle = rb.getWithFallback("fields");
184 fieldBundle = itemBundle.getWithFallback(CLDR_FIELD_NAME[i]);
185 dnBundle = fieldBundle.getWithFallback("dn");
197 // ICU4J getWithFallback does not work well when
199 // 2) getWithFallback is called multiple times for going down hierarchical resource path
200 // #9987 resolved the issue of alias table when full path is specified in getWithFallback,
    [all...]
NumberingSystem.java 157 rb = rb.getWithFallback("NumberElements");
RuleBasedNumberFormat.java     [all...]
DateIntervalInfo.java 430 // ICU4J getWithFallback does not work well when
432 // 2) getWithFallback is called multiple times for going down hierarchical resource path
433 // #9987 resolved the issue of alias table when full path is specified in getWithFallback,
436 // ICUResourceBundle calBundle = rb.getWithFallback("calendar");
437 // ICUResourceBundle calTypeBundle = calBundle.getWithFallback(calendarTypeToUse);
438 ICUResourceBundle itvDtPtnResource =rb.getWithFallback("calendar/" + calendarTypeToUse + "/intervalFormats");
    [all...]
DateFormatSymbols.java     [all...]
  /external/icu/icu4c/source/common/unicode/
resbund.h 465 getWithFallback(const char* key, UErrorCode& status);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ICUResourceBundleTest.java 664 ICUResourceBundle b1 = bundle.getWithFallback("calendar");
669 ICUResourceBundle b2 = b1.getWithFallback(defaultCal);
670 ICUResourceBundle b3 = b2.getWithFallback("monthNames");
671 ICUResourceBundle b4 = b3.getWithFallback("format");
672 ICUResourceBundle b5 = b4.getWithFallback("narrow");
    [all...]
DisplayNameTest.java 137 ICUResourceBundle table = bundle.getWithFallback("zoneStrings");
140 //ICUResourceBundle stringSet = table.getWithFallback(String.valueOf(i));
322 ICUResourceBundle table = bundle.getWithFallback(tableName);
CurrencyTest.java 276 CurrencyData.DefaultInfo info_fallback = (CurrencyData.DefaultInfo)CurrencyData.DefaultInfo.getWithFallback(true);
278 errln("getWithFallback() returned null.");
282 CurrencyData.DefaultInfo info_nofallback = (CurrencyData.DefaultInfo)CurrencyData.DefaultInfo.getWithFallback(false);
284 errln("getWithFallback() returned null.");
  /external/icu/icu4c/source/test/intltest/
restsnew.cpp     [all...]
numrgts.cpp     [all...]
  /external/icu/icu4c/source/common/
resbund.cpp 351 ResourceBundle ResourceBundle::getWithFallback(const char* key, UErrorCode& status){
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationLoader.java 82 UResourceBundle data = ((ICUResourceBundle)bundle).getWithFallback(
94 // Java porting note: ICU4J getWithFallback/getStringWithFallback currently does not
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocaleData.java 279 ICUResourceBundle stringBundle = delimitersBundle.getWithFallback(DELIMITER_TYPES[type]);
MeasureUnit.java 257 ICUResourceBundle unitsTypeRes = resource.getWithFallback(key);
    [all...]

Completed in 1451 milliseconds

1 2