Searched refs:idx_H (Results 1 – 3 of 3) sorted by relevance
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | TimeZoneFormat.java | 2055 int idx_H = offsetHM.substring(0, idx_mm).lastIndexOf("H"); 2056 if (idx_H >= 0) { 2057 sep = offsetHM.substring(idx_H + 1, idx_mm); 2078 int idx_H = offsetHM.substring(0, idx_mm).lastIndexOf("H"); 2079 if (idx_H >= 0) { 2080 return offsetHM.substring(0, idx_H + 1);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | TimeZoneFormat.java | 2125 int idx_H = offsetHM.substring(0, idx_mm).lastIndexOf("H"); 2126 if (idx_H >= 0) { 2127 sep = offsetHM.substring(idx_H + 1, idx_mm); 2148 int idx_H = offsetHM.substring(0, idx_mm).lastIndexOf("H"); 2149 if (idx_H >= 0) { 2150 return offsetHM.substring(0, idx_H + 1);
|
/external/icu/icu4c/source/i18n/ |
D | tzfmt.cpp | 2583 int32_t idx_H = offsetHM.tempSubString(0, idx_mm).lastIndexOf((UChar)0x0048 /* H */); in expandOffsetPattern() local 2584 if (idx_H >= 0) { in expandOffsetPattern() 2585 sep = offsetHM.tempSubString(idx_H + 1, idx_mm - (idx_H + 1)); in expandOffsetPattern() 2613 int32_t idx_H = offsetHM.tempSubString(0, idx_mm).lastIndexOf((UChar)0x0048, 0); in truncateOffsetPattern() local 2614 if (idx_H >= 0) { in truncateOffsetPattern() 2615 return result.setTo(offsetHM.tempSubString(0, idx_H + 1)); in truncateOffsetPattern()
|