HomeSort by relevance Sort by last modified time
    Searched refs:hours (Results 101 - 125 of 670) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeVoiceActivity.java 121 int hours = minutes / 60; local
122 return res.getQuantityString(byHour, hours, hours, formattedTime);
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
LapsAdapter.java 237 * @param separator displayed between hours and minutes as well as minutes and seconds
242 final int hours, minutes, seconds, hundredths; local
245 hours = minutes = seconds = hundredths = 0;
247 hours = (int) (time / DateUtils.HOUR_IN_MILLIS);
263 // The display of hours and minutes varies based on maxTime.
269 sTimeBuilder.append(UiDataModel.getUiDataModel().getFormattedNumber(hours, 1));
273 sTimeBuilder.append(UiDataModel.getUiDataModel().getFormattedNumber(hours, 2));
277 sTimeBuilder.append(UiDataModel.getUiDataModel().getFormattedNumber(hours, 3));
  /external/icu/android_icu4j/src/main/java/android/icu/util/
DateTimeRule.java 271 int hours = time / 60; local
279 buf.append(hours);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DateTimeRule.java 306 int hours = time / 60; local
314 buf.append(hours);
  /external/libcxx/test/std/utilities/time/time.point/time.point.cast/
time_point_cast.pass.cpp 60 test(std::chrono::milliseconds(7265000), std::chrono::hours(2));
72 test_constexpr<std::chrono::milliseconds, 7265000, std::chrono::hours, 2> ();
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.cast/
time_point_cast.pass.cpp 58 test(std::chrono::milliseconds(7265000), std::chrono::hours(2));
70 test_constexpr<std::chrono::milliseconds, 7265000, std::chrono::hours, 2> ();
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.point/time.point.cast/
time_point_cast.pass.cpp 58 test(std::chrono::milliseconds(7265000), std::chrono::hours(2));
70 test_constexpr<std::chrono::milliseconds, 7265000, std::chrono::hours, 2> ();
  /external/autotest/site_utils/
count_jobs_unittest.py 54 models.Job(created_on=some_day - timedelta(hours=i)).save()
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1GeneralizedTime.java 224 int hours = offset / (60 * 60 * 1000); local
225 int minutes = (offset - (hours * 60 * 60 * 1000)) / (60 * 1000);
231 hours += sign.equals("+") ? 1 : -1;
239 return "GMT" + sign + convert(hours) + ":" + convert(minutes);
  /external/ltp/testscripts/
ltpstress.sh 41 hours=24
74 -t duration Execute the testsuite for given duration in hours. Default is 24.
141 t) hours=$OPTARG
142 duration=$(($hours * 60 * 60));;
305 ${LTPROOT}/bin/ltp-pan -e ${PRETTY_PRT} ${QUIET_MODE} -S -t ${hours}h -a stress1 -n stress1 -l $logfile -f ${TMP}/stress.part1 -o $output1 &
306 ${LTPROOT}/bin/ltp-pan -e ${PRETTY_PRT} ${QUIET_MODE} -S -t ${hours}h -a stress2 -n stress2 -l $logfile -f ${TMP}/stress.part2 -o $output2 &
307 ${LTPROOT}/bin/ltp-pan -e ${PRETTY_PRT} ${QUIET_MODE} -S -t ${hours}h -a stress3 -n stress3 -l $logfile -f ${TMP}/stress.part3 -o $output3 &
309 echo "Running LTP Stress for $hours hour(s) using $(($memsize/1024)) Mb"
  /external/sl4a/Common/src/com/googlecode/android_scripting/
Process.java 182 int hours = (int) (ms % (1000 * 60 * 60 * 24)) / 3600000; local
186 buffer.append(String.format("%02d:%02d:", days, hours));
187 } else if (hours != 0) {
188 buffer.append(String.format("%02d:", hours));
  /libcore/luni/src/main/java/javax/xml/datatype/
Duration.java 34 * which consists of six fields (years, months, days, hours,
161 boolean hourSet = isSet(DatatypeConstants.HOURS);
260 * Obtains the value of the HOURS field as an integer value,
264 * that this method works on the HOURS field.
266 * @return Hours of this <code>Duration</code>.
270 return getFieldValueAsInt(DatatypeConstants.HOURS);
383 * In case of YEARS, MONTHS, DAYS, HOURS, and MINUTES, the returned
388 * one of the six Field constants (YEARS,MONTHS,DAYS,HOURS,
394 * For YEARS, MONTHS, DAYS, HOURS, and MINUTES, this method
406 * one of the six Field constants (YEARS,MONTHS,DAYS,HOURS,
907 BigInteger hours = (BigInteger) getField(DatatypeConstants.HOURS); local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/testing/
WeightWatcher.java 192 long hours = sec / 3600; local
193 if (hours > 0) {
194 sec -= hours * 3600;
195 sb.append(hours);
  /system/core/storaged/include/
storaged_uid_monitor.h 103 double hours, uint64_t threshold, bool force_report);
  /external/ltp/testcases/kernel/io/disktest/
stats.c 310 hread_time, time_struct.hours,
318 hwrite_time, time_struct.hours,
328 read_time, time_struct.hours,
336 write_time, time_struct.hours,
347 time_struct.hours,
356 time_struct.hours,
366 time_struct.days, time_struct.hours,
  /frameworks/base/core/java/android/text/format/
DateUtils.java 360 * from seconds up to hours.
371 * from seconds up to hours.
374 * locales may not have abbreviations). Use LENGTH_LONG for the full spelling (e.g. "2 hours"),
398 final int hours = (int) ((millis + 1800000) / HOUR_IN_MILLIS); local
399 return formatter.format(new Measure(hours, MeasureUnit.HOUR));
427 // Break the elapsed seconds into hours, minutes, and seconds.
428 long hours = 0; local
432 hours = elapsedSeconds / 3600;
433 elapsedSeconds -= hours * 3600;
454 if (hours > 0)
    [all...]
  /frameworks/base/core/java/android/util/
TimeUtils.java 282 int days = 0, hours = 0, minutes = 0; local
289 hours = seconds / SECONDS_PER_HOUR;
290 seconds -= hours * SECONDS_PER_HOUR;
301 myLen += accumField(hours, 1, myLen > 0, 2);
318 pos = printFieldLocked(formatStr, hours, 'h', pos, pos != start, zeropad ? 2 : 0);
  /frameworks/base/packages/Osu/src/com/android/hotspot2/app/
MainActivity.java 198 long hours = TimeUnit.SECONDS.toHours(timeSeconds); local
199 long minutes = TimeUnit.SECONDS.toMinutes(timeSeconds) - TimeUnit.HOURS.toMinutes(hours);
201 timeSeconds - TimeUnit.HOURS.toSeconds(hours) - TimeUnit.MINUTES.toSeconds(minutes);
202 if (hours > 0) {
203 return String.format("%02d:%02d:%02d", hours, minutes, seconds);
  /libcore/ojluni/src/main/java/java/time/chrono/
ChronoLocalDateTimeImpl.java 108 * Hours per day.
313 case HOURS: return plusHours(amountToAdd);
325 private ChronoLocalDateTimeImpl<D> plusHours(long hours) {
326 return plusWithOverflow(date, hours, 0, 0, 0);
342 private ChronoLocalDateTimeImpl<D> plusWithOverflow(D newDate, long hours, long minutes, long seconds, long nanos) {
344 if ((hours | minutes | seconds | nanos) == 0) {
350 hours / HOURS_PER_DAY; // max/24
354 (hours % HOURS_PER_DAY) * NANOS_PER_HOUR; // max 86400000000000
384 case HOURS: amount = Math.multiplyExact(amount, HOURS_PER_DAY); break;
  /compatibility/cdd/9_security-model/
9_11_keys-and-credentials.md 12 MUST be at least 24 hours per attempt.
112 (e.g.PIN, pattern, password) at least once every 72 hours or less.
133 (e.g.PIN, pattern, password) at least once every 72 hours or less.
  /external/icu/icu4c/source/i18n/
utmscale.c 21 #define hours (minutes * 60) macro
22 #define days (hours * 24)