Home
last modified time | relevance | path

Searched refs:hms (Results 1 – 25 of 329) sorted by relevance

12345678910>>...14

/external/u-boot/drivers/rtc/
Ddate.c71 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/
Dmeasfmt.cpp72 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.py342 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/
DMeasureFormat.java444 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/
DMeasureFormat.java418 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/
Den_FI.txt30 hms{"h.mm.ss a"}
62 hms{"h.mm.ss a"}
Den_DK.txt28 hms{"h.mm.ss a"}
60 hms{"h.mm.ss a"}
Dvai_Latn.txt56 hms{"h:mm:ss a"}
97 hms{"h:mm:ss a"}
Ddje.txt51 hms{"h:mm:ss a"}
100 hms{"h:mm:ss a"}
Ddyo.txt51 hms{"h:mm:ss a"}
92 hms{"h:mm:ss a"}
Dtwq.txt50 hms{"h:mm:ss a"}
99 hms{"h:mm:ss a"}
Dsbp.txt51 hms{"h:mm:ss a"}
100 hms{"h:mm:ss a"}
Dmgh.txt46 hms{"h:mm:ss a"}
95 hms{"h:mm:ss a"}
Drn.txt50 hms{"h:mm:ss a"}
99 hms{"h:mm:ss a"}
/external/icu/icu4c/source/data/unit/
Dkok.txt7 hms{"h:mm:ss"}
Dqu.txt7 hms{"h:mm:ss"}
Dti.txt7 hms{"h:mm:ss"}
Dmi.txt7 hms{"h:mm:ss"}
Dtg.txt7 hms{"h:mm:ss"}
Dyi.txt7 hms{"h:mm:ss"}
Dtt.txt7 hms{"h:mm:ss"}
Dwo.txt7 hms{"h:mm:ss"}
Dlrc.txt7 hms{"h:mm:ss"}
Des_CL.txt7 hms{"hh:mm:ss"}
/external/perfetto/ui/src/frontend/
Drecord_widgets.ts87 onTimeValueChange(attrs: SliderAttrs, hms: string) {
89 const date = new Date(`1970-01-01T${hms}.000Z`);

12345678910>>...14