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 | 2051 int idx_H = offsetHM.substring(0, idx_mm).lastIndexOf("H"); 2052 if (idx_H >= 0) { 2053 sep = offsetHM.substring(idx_H + 1, idx_mm); 2074 int idx_H = offsetHM.substring(0, idx_mm).lastIndexOf("H"); 2075 if (idx_H >= 0) { 2076 return offsetHM.substring(0, idx_H + 1);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | TimeZoneFormat.java | 2121 int idx_H = offsetHM.substring(0, idx_mm).lastIndexOf("H"); 2122 if (idx_H >= 0) { 2123 sep = offsetHM.substring(idx_H + 1, idx_mm); 2144 int idx_H = offsetHM.substring(0, idx_mm).lastIndexOf("H"); 2145 if (idx_H >= 0) { 2146 return offsetHM.substring(0, idx_H + 1);
|
/external/icu/icu4c/source/i18n/ |
D | tzfmt.cpp | 2554 int32_t idx_H = offsetHM.tempSubString(0, idx_mm).lastIndexOf((UChar)0x0048 /* H */); in expandOffsetPattern() local 2555 if (idx_H >= 0) { in expandOffsetPattern() 2556 sep = offsetHM.tempSubString(idx_H + 1, idx_mm - (idx_H + 1)); in expandOffsetPattern() 2584 int32_t idx_H = offsetHM.tempSubString(0, idx_mm).lastIndexOf((UChar)0x0048, 0); in truncateOffsetPattern() local 2585 if (idx_H >= 0) { in truncateOffsetPattern() 2586 return result.setTo(offsetHM.tempSubString(0, idx_H + 1)); in truncateOffsetPattern()
|