Home
last modified time | relevance | path

Searched refs:timeMap (Results 1 – 4 of 4) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/util/
DDayPeriodsOld.java47 return timeMap[hoursInDay]; in get()
102 private final DayPeriod[] timeMap; field in DayPeriodsOld
111 timeMap = map; in DayPeriodsOld()
138 private final DayPeriod[] timeMap = new DayPeriod[24]; field in DayPeriodsOld.DayPeriodBuilder
152 if (timeMap[i] != null) { in add()
153 …throw new IllegalArgumentException(locale + " Collision " + i + ", " + timeMap[i] + ", " + dayPeri… in add()
155 timeMap[i] = dayPeriodEnum; in add()
161 for (int i = 0; i < timeMap.length; ++i) { in build()
162 DayPeriod dp = timeMap[i]; in build()
167 DayPeriodsOld item = new DayPeriodsOld(locale, timeMap, samples); in build()
DDayPeriods.java47 return timeMap[hoursInDay]; in get()
102 private final DayPeriod[] timeMap; field in DayPeriods
111 timeMap = map; in DayPeriods()
138 private final DayPeriod[] timeMap = new DayPeriod[24]; field in DayPeriods.DayPeriodBuilder
152 if (timeMap[i] != null) { in add()
153 …throw new IllegalArgumentException(locale + " Collision " + i + ", " + timeMap[i] + ", " + dayPeri… in add()
155 timeMap[i] = dayPeriodEnum; in add()
161 for (int i = 0; i < timeMap.length; ++i) { in build()
162 DayPeriod dp = timeMap[i]; in build()
167 DayPeriods item = new DayPeriods(locale, timeMap, samples); in build()
/external/autotest/frontend/client/src/autotest/afe/
DTestSelector.java82 private static final Map<String, String> timeMap = new HashMap<String, String>(); field in TestSelector.TestInfoBuilder
84 timeMap.put("SHORT", "less than 15 minutes");
85 timeMap.put("MEDIUM", "15 minutes to four hours");
86 timeMap.put("LONG", "over four hours");
115 if (timeMap.containsKey(time)) { in writeTime()
116 timeDetail = timeMap.get(time); in writeTime()
/external/pdfium/fpdfsdk/pwl/
Dcpwl_timer.cpp18 static auto* timeMap = new std::map<int32_t, CPWL_Timer*>; in GetPWLTimeMap() local
19 return *timeMap; in GetPWLTimeMap()