Searched refs:idx_mm (Results 1 – 3 of 3) sorted by relevance
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | TimeZoneFormat.java | 2050 int idx_mm = offsetHM.indexOf("mm"); 2051 if (idx_mm < 0) { 2055 int idx_H = offsetHM.substring(0, idx_mm).lastIndexOf("H"); 2057 sep = offsetHM.substring(idx_H + 1, idx_mm); 2059 return offsetHM.substring(0, idx_mm + 2) + sep + "ss" + offsetHM.substring(idx_mm + 2); 2070 int idx_mm = offsetHM.indexOf("mm"); 2071 if (idx_mm < 0) { 2074 int idx_HH = offsetHM.substring(0, idx_mm).lastIndexOf("HH"); 2078 int idx_H = offsetHM.substring(0, idx_mm).lastIndexOf("H");
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | TimeZoneFormat.java | 2120 int idx_mm = offsetHM.indexOf("mm"); 2121 if (idx_mm < 0) { 2125 int idx_H = offsetHM.substring(0, idx_mm).lastIndexOf("H"); 2127 sep = offsetHM.substring(idx_H + 1, idx_mm); 2129 return offsetHM.substring(0, idx_mm + 2) + sep + "ss" + offsetHM.substring(idx_mm + 2); 2140 int idx_mm = offsetHM.indexOf("mm"); 2141 if (idx_mm < 0) { 2144 int idx_HH = offsetHM.substring(0, idx_mm).lastIndexOf("HH"); 2148 int idx_H = offsetHM.substring(0, idx_mm).lastIndexOf("H");
|
/external/icu/icu4c/source/i18n/ |
D | tzfmt.cpp | 2575 int32_t idx_mm = offsetHM.indexOf(DEFAULT_GMT_OFFSET_MINUTE_PATTERN, 2, 0); in expandOffsetPattern() local 2576 if (idx_mm < 0) { in expandOffsetPattern() 2583 int32_t idx_H = offsetHM.tempSubString(0, idx_mm).lastIndexOf((UChar)0x0048 /* H */); in expandOffsetPattern() 2585 sep = offsetHM.tempSubString(idx_H + 1, idx_mm - (idx_H + 1)); in expandOffsetPattern() 2587 result.setTo(offsetHM.tempSubString(0, idx_mm + 2)); in expandOffsetPattern() 2590 result.append(offsetHM.tempSubString(idx_mm + 2)); in expandOffsetPattern() 2602 int32_t idx_mm = offsetHM.indexOf(DEFAULT_GMT_OFFSET_MINUTE_PATTERN, 2, 0); in truncateOffsetPattern() local 2603 if (idx_mm < 0) { in truncateOffsetPattern() 2609 int32_t idx_HH = offsetHM.tempSubString(0, idx_mm).lastIndexOf(HH, 2, 0); in truncateOffsetPattern() 2613 int32_t idx_H = offsetHM.tempSubString(0, idx_mm).lastIndexOf((UChar)0x0048, 0); in truncateOffsetPattern()
|