Searched refs:aliasPath (Results 1 – 6 of 6) sorted by relevance
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | DateFormatSymbols.java | 1765 String aliasPath = value.getAliasString(); in processAliasFromValue() local 1766 if (aliasPath.startsWith(CALENDAR_ALIAS_PREFIX) && in processAliasFromValue() 1767 aliasPath.length() > CALENDAR_ALIAS_PREFIX.length()) { in processAliasFromValue() 1768 int typeLimit = aliasPath.indexOf('/', CALENDAR_ALIAS_PREFIX.length()); in processAliasFromValue() 1770 … String aliasCalendarType = aliasPath.substring(CALENDAR_ALIAS_PREFIX.length(), typeLimit); in processAliasFromValue() 1771 aliasRelativePath = aliasPath.substring(typeLimit + 1); in processAliasFromValue() 1790 throw new ICUException("Malformed 'calendar' alias. Path: " + aliasPath); in processAliasFromValue()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | DateFormatSymbols.java | 1807 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/cldr/tools/java/org/unicode/cldr/util/ |
D | XMLSource.java | 201 public static Alias make(String aliasPath) { in make() argument 202 int pos = aliasPath.indexOf("/alias"); in make() 204 String aliasParts = aliasPath.substring(pos + 6); in make() 205 String oldPath = aliasPath.substring(0, pos); in make()
|
/external/icu/icu4c/source/i18n/ |
D | dtfmtsym.cpp | 1803 UnicodeString aliasPath(aliasPathUChar, aliasPathSize); in processAliasFromValue() local 1805 if (aliasPath.startsWith(kCalendarAliasPrefixUChar, aliasPrefixLength) in processAliasFromValue() 1806 && aliasPath.length() > aliasPrefixLength) { in processAliasFromValue() 1807 int32_t typeLimit = aliasPath.indexOf(SOLIDUS, aliasPrefixLength); in processAliasFromValue() 1810 aliasPath.tempSubStringBetween(aliasPrefixLength, typeLimit); in processAliasFromValue() 1811 aliasRelativePath.setTo(aliasPath, typeLimit + 1, aliasPath.length()); in processAliasFromValue()
|
D | dtitvinf.cpp | 254 const UnicodeString &aliasPath = value.getAliasUnicodeString(errorCode); in put() local 258 getCalendarTypeFromPath(aliasPath, nextCalendarType, errorCode); in put()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestInheritance.java | 970 for (String aliasPath : allAliasPaths) { in checkAliasValues() 971 if (aliasPath.startsWith("//ldml/alias")) { in checkAliasValues() 974 String fullPath = cldrFileToCheck.getFullXPath(aliasPath); in checkAliasValues()
|