Home
last modified time | relevance | path

Searched refs:aliasPath (Results 1 – 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DDateFormatSymbols.java1766 String aliasPath = value.getAliasString(); in processAliasFromValue() local
1767 if (aliasPath.startsWith(CALENDAR_ALIAS_PREFIX) && in processAliasFromValue()
1768 aliasPath.length() > CALENDAR_ALIAS_PREFIX.length()) { in processAliasFromValue()
1769 int typeLimit = aliasPath.indexOf('/', CALENDAR_ALIAS_PREFIX.length()); in processAliasFromValue()
1771 … String aliasCalendarType = aliasPath.substring(CALENDAR_ALIAS_PREFIX.length(), typeLimit); in processAliasFromValue()
1772 aliasRelativePath = aliasPath.substring(typeLimit + 1); in processAliasFromValue()
1791 throw new ICUException("Malformed 'calendar' alias. Path: " + aliasPath); in processAliasFromValue()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateFormatSymbols.java1807 String aliasPath = value.getAliasString(); in processAliasFromValue() local
1808 if (aliasPath.startsWith(CALENDAR_ALIAS_PREFIX) && in processAliasFromValue()
1809 aliasPath.length() > CALENDAR_ALIAS_PREFIX.length()) { in processAliasFromValue()
1810 int typeLimit = aliasPath.indexOf('/', CALENDAR_ALIAS_PREFIX.length()); in processAliasFromValue()
1812 … String aliasCalendarType = aliasPath.substring(CALENDAR_ALIAS_PREFIX.length(), typeLimit); in processAliasFromValue()
1813 aliasRelativePath = aliasPath.substring(typeLimit + 1); in processAliasFromValue()
1832 throw new ICUException("Malformed 'calendar' alias. Path: " + aliasPath); in processAliasFromValue()
/external/icu/icu4c/source/i18n/
Ddtfmtsym.cpp1799 UnicodeString aliasPath(aliasPathUChar, aliasPathSize); in processAliasFromValue() local
1801 if (aliasPath.startsWith(kCalendarAliasPrefixUChar, aliasPrefixLength) in processAliasFromValue()
1802 && aliasPath.length() > aliasPrefixLength) { in processAliasFromValue()
1803 int32_t typeLimit = aliasPath.indexOf(SOLIDUS, aliasPrefixLength); in processAliasFromValue()
1806 aliasPath.tempSubStringBetween(aliasPrefixLength, typeLimit); in processAliasFromValue()
1807 aliasRelativePath.setTo(aliasPath, typeLimit + 1, aliasPath.length()); in processAliasFromValue()
Ddtitvinf.cpp254 const UnicodeString &aliasPath = value.getAliasUnicodeString(errorCode); in put() local
258 getCalendarTypeFromPath(aliasPath, nextCalendarType, errorCode); in put()