Searched refs:hms (Results 1 – 25 of 329) sorted by relevance
12345678910>>...14
/external/u-boot/drivers/rtc/ |
D | date.c | 71 register long hms, day; in rtc_to_tm() local 74 hms = tim % SECDAY; in rtc_to_tm() 77 tm->tm_hour = hms / 3600; in rtc_to_tm() 78 tm->tm_min = (hms % 3600) / 60; in rtc_to_tm() 79 tm->tm_sec = (hms % 3600) % 60; in rtc_to_tm()
|
/external/icu/icu4c/source/i18n/ |
D | measfmt.cpp | 72 const UnicodeString &hms, in NumericDateFormatters() argument 76 hourMinuteSecond(hms, status) { in NumericDateFormatters() 565 Formattable *hms, in toHMS() argument 583 hms[0] = measures[i].getNumber(); in toHMS() 584 if (hms[0].getDouble() < 0.0) { in toHMS() 593 hms[1] = measures[i].getNumber(); in toHMS() 594 if (hms[1].getDouble() < 0.0) { in toHMS() 603 hms[2] = measures[i].getNumber(); in toHMS() 604 if (hms[2].getDouble() < 0.0) { in toHMS() 809 Formattable hms[3]; in formatMeasures() local [all …]
|
/external/python/dateutil/dateutil/parser/ |
D | _parser.py | 342 def hms(self, name): member in parserinfo 852 info.hms(tokens[idx + 1]) is None))): 893 (idx, hms) = self._parse_hms(idx, tokens, info, hms_idx) 894 if hms is not None: 897 self._assign_hms(res, value_repr, hms) 970 if idx+1 < len_l and info.hms(tokens[idx+1]) is not None: 977 info.hms(tokens[idx+2]) is not None): 982 elif idx > 0 and info.hms(tokens[idx-1]) is not None: 990 info.hms(tokens[idx-2]) is not None): 1001 def _assign_hms(self, res, value_repr, hms): argument [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | MeasureFormat.java | 444 Number[] hms = toHMS(measures); in formatMeasuresInternal() local 445 if (hms != null) { in formatMeasuresInternal() 446 formatNumeric(hms, appendTo); in formatMeasuresInternal() 861 private void formatNumeric(Number[] hms, Appendable appendable) { in formatNumeric() argument 867 for (int i = 0; i < hms.length; i++) { in formatNumeric() 868 if (hms[i] != null) { in formatNumeric() 875 hms[i] = Integer.valueOf(0); in formatNumeric() 879 long millis = (long) (((Math.floor(hms[0].doubleValue()) * 60.0 in formatNumeric() 880 … + Math.floor(hms[1].doubleValue())) * 60.0 + Math.floor(hms[2].doubleValue())) * 1000.0); in formatNumeric() 887 hms[endIndex], in formatNumeric() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | MeasureFormat.java | 418 Number[] hms = toHMS(measures); in formatMeasuresInternal() local 419 if (hms != null) { in formatMeasuresInternal() 420 formatNumeric(hms, appendTo); in formatMeasuresInternal() 820 private void formatNumeric(Number[] hms, Appendable appendable) { in formatNumeric() argument 826 for (int i = 0; i < hms.length; i++) { in formatNumeric() 827 if (hms[i] != null) { in formatNumeric() 834 hms[i] = Integer.valueOf(0); in formatNumeric() 838 long millis = (long) (((Math.floor(hms[0].doubleValue()) * 60.0 in formatNumeric() 839 … + Math.floor(hms[1].doubleValue())) * 60.0 + Math.floor(hms[2].doubleValue())) * 1000.0); in formatNumeric() 846 hms[endIndex], in formatNumeric() [all …]
|
/external/icu/icu4c/source/data/locales/ |
D | en_FI.txt | 30 hms{"h.mm.ss a"} 62 hms{"h.mm.ss a"}
|
D | en_DK.txt | 28 hms{"h.mm.ss a"} 60 hms{"h.mm.ss a"}
|
D | vai_Latn.txt | 56 hms{"h:mm:ss a"} 97 hms{"h:mm:ss a"}
|
D | dje.txt | 51 hms{"h:mm:ss a"} 100 hms{"h:mm:ss a"}
|
D | dyo.txt | 51 hms{"h:mm:ss a"} 92 hms{"h:mm:ss a"}
|
D | twq.txt | 50 hms{"h:mm:ss a"} 99 hms{"h:mm:ss a"}
|
D | sbp.txt | 51 hms{"h:mm:ss a"} 100 hms{"h:mm:ss a"}
|
D | mgh.txt | 46 hms{"h:mm:ss a"} 95 hms{"h:mm:ss a"}
|
D | rn.txt | 50 hms{"h:mm:ss a"} 99 hms{"h:mm:ss a"}
|
/external/icu/icu4c/source/data/unit/ |
D | kok.txt | 7 hms{"h:mm:ss"}
|
D | qu.txt | 7 hms{"h:mm:ss"}
|
D | ti.txt | 7 hms{"h:mm:ss"}
|
D | mi.txt | 7 hms{"h:mm:ss"}
|
D | tg.txt | 7 hms{"h:mm:ss"}
|
D | yi.txt | 7 hms{"h:mm:ss"}
|
D | tt.txt | 7 hms{"h:mm:ss"}
|
D | wo.txt | 7 hms{"h:mm:ss"}
|
D | lrc.txt | 7 hms{"h:mm:ss"}
|
D | es_CL.txt | 7 hms{"hh:mm:ss"}
|
/external/perfetto/ui/src/frontend/ |
D | record_widgets.ts | 87 onTimeValueChange(attrs: SliderAttrs, hms: string) { 89 const date = new Date(`1970-01-01T${hms}.000Z`);
|
12345678910>>...14