HomeSort by relevance Sort by last modified time
    Searched refs:minutes (Results 201 - 225 of 694) sorted by null

1 2 3 4 5 6 7 891011>>

  /test/vts/runners/target/vts_hal_hidl_target/
VtsHalHidlTargetCallbackBase.h 33 constexpr milliseconds DEFAULT_CALLBACK_WAIT_TIMEOUT_INITIAL = minutes(1);
  /tools/acloud/public/
device_driver_test.py 157 minutes=expiration_mins)
  /libcore/ojluni/src/main/java/java/text/
SimpleDateFormat.java 314 * <code>GMT</code> <i>Sign</i> <i>Hours</i> <code>:</code> <i>Minutes</i>
320 * <i>Minutes:</i>
324 * <i>Hours</i> must be between 0 and 23, and <i>Minutes</i> must be between
334 * <i>Sign</i> <i>TwoDigitHours</i> <i>Minutes</i>
354 * <i>Sign</i> <i>TwoDigitHours</i> <i>Minutes</i>
357 * <i>Sign</i> <i>TwoDigitHours</i> {@code :} <i>Minutes</i>
533 // For time zones that have no names, use strings GMT+minutes and
534 // GMT-minutes. For instance, in France the time zone is GMT+60.
1991 int minutes = 0; local
    [all...]
  /external/python/cpython3/Modules/
_datetimemodule.c 864 " representing a whole number of minutes,"
920 * out of range or isn't a whole number of minutes, ValueError is raised and
970 * # of minutes), ValueError is raised and this returns -1. Else *none is
971 * set to 0 and the offset is returned (as int # of minutes east of UTC).
985 * the offset is returned (as an int # of minutes east of UTC).
1117 int hours, minutes, seconds; local
2299 int minutes = divmod(seconds, 60, &seconds); local
3338 int hours, minutes, seconds; local
    [all...]
  /external/v8/src/builtins/
builtins-date.cc 31 // ES6 section 20.3.1.11 Hours, Minutes, Second, and Milliseconds
239 double date = 1.0, hours = 0.0, minutes = 0.0, seconds = 0.0, ms = 0.0; local
254 minutes = minutes_object->Number();
275 double const time = MakeTime(hours, minutes, seconds, ms);
303 // ES6 section 20.3.3.4 Date.UTC (year,month,date,hours,minutes,seconds,ms)
308 double month = 0.0, date = 1.0, hours = 0.0, minutes = 0.0, seconds = 0.0, local
334 minutes = minutes_object->Number();
357 double const time = MakeTime(hours, minutes, seconds, ms);
    [all...]
  /external/boringssl/src/ssl/test/runner/poly1305/
poly1305_test.go 97 // take about many minutes to run, even on fast machines. It's disabled
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.last_write_time/
last_write_time.pass.cpp 247 using Minutes = std::chrono::minutes;
257 const file_time_type past_time = now - Minutes(3) - Sec(42) - MicroSec(17);
258 const file_time_type before_epoch_time = epoch_time - Minutes(3) - Sec(42) - MicroSec(17);
311 using Minutes = std::chrono::minutes;
  /external/protobuf/src/google/protobuf/util/
time_util.cc 251 Duration TimeUtil::MinutesToDuration(int64 minutes) {
252 return CreateNormalized<Duration>(minutes * kSecondsPerMinute, 0);
  /external/python/cpython3/Lib/test/libregrtest/
main.py 43 minutes, seconds = divmod(seconds, 60.0)
44 return '%.0f min %.0f sec' % (minutes, seconds)
  /external/v8/src/base/platform/
time.cc 127 TimeDelta TimeDelta::FromMinutes(int minutes) {
128 return TimeDelta(minutes * Time::kMicrosecondsPerMinute);
  /frameworks/base/core/java/android/text/format/
Time.java 735 * or subtracting hours or minutes, then you should use
932 int minutes = (offset % 3600) / 60; local
935 return String.format(Locale.US, "%s%s%02d:%02d", base, sign, hours, minutes);
    [all...]
  /frameworks/base/media/java/android/media/
TtmlRenderer.java 133 String minutes = matcher.group(2); local
134 durationSeconds += Long.parseLong(minutes) * 60;
  /libcore/ojluni/src/main/java/java/util/
Date.java 97 * year, month, date, hours, minutes, and seconds values, the
211 * @param min the minutes between 0-59.
234 * @param min the minutes between 0-59.
305 * @param min the minutes between 0-59.
352 * 13:30:00 GMT+0430" (4 hours, 30 minutes west of the Greenwich
371 * in hours. Otherwise, it is regarded as an offset in minutes,
377 * thirty minutes east of Greenwich." It is permitted for the
    [all...]
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/poly1305/
poly1305_test.go 97 // take about many minutes to run, even on fast machines. It's disabled
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/poly1305/
poly1305_test.go 97 // take about many minutes to run, even on fast machines. It's disabled
  /external/autotest/scheduler/
scheduler_models.py     [all...]
  /external/autotest/server/cros/dynamic_suite/
job_status.py 72 @param timeout_mins: Time in minutes to wait before aborting the jobs we
78 datetime.timedelta(minutes=timeout_mins)):
81 logging.debug('Job: %s has timed out after %s minutes. Aborting job.',
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
TimePickerDialog.java 214 mMinuteView = (TextView) view.findViewById(R.id.minutes);
450 // Show either Hours or Minutes.
467 int minutes = mTimePicker.getMinutes();
468 mTimePicker.setContentDescription(mMinutePickerDescription + ": " + minutes);
623 // For 24-hour mode, the time is legal if the hours and minutes are each legal. Note:
664 * Update the hours, minutes, and AM/PM displays with the typed times. If the typedTimes is
730 * Get the currently-entered time, as integer values of the hours and minutes typed.
733 * hours of minutes. This is helpful for deciding whether to show the dashes, or actual 0's.
735 * minutes, and the third will be either TimePickerDialog.AM or TimePickerDialog.PM.
    [all...]
  /hardware/interfaces/camera/common/1.0/default/
Exif.cpp 143 // sets the latitude with degrees minutes seconds format.
147 // sets the longitude with degrees minutes seconds format.
355 ExifLong minutes = static_cast<ExifLong>(60 * (num - degrees)); local
357 static_cast<ExifLong>(3600000000u * (num - degrees - minutes / 60.0));
360 {minutes, 1});
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarInstancesHelper.java 236 duration.minutes = 0;
307 duration.minutes = 0;
317 duration.minutes = 0;
    [all...]
  /external/dng_sdk/source/
dng_xmp.cpp 276 // Else we need to use the fractional minutes case.
281 // Find value minutes.
291 // Split into degrees and minutes.
352 real64 minutes = 0.0; local
358 &minutes,
368 if (degrees < 0 || minutes < 0 || seconds < 0)
377 coord [1].Set_real64 (minutes, 10000);
382 coord [1].Set_real64 (minutes, 1);
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ExifInterface.java 1912 double minutes = coordinate[1].toDouble(); local
2035 int minutes = (int) value; local
    [all...]
  /packages/apps/Camera2/src/com/android/camera/exif/
ExifInterface.java 1891 double minutes = coordinate[1].toDouble(); local
2014 int minutes = (int) value; local
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ExifInterface.java 1912 double minutes = coordinate[1].toDouble(); local
2035 int minutes = (int) value; local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
ExifInterface.java 1953 double minutes = coordinate[1].toDouble(); local
2076 int minutes = (int) value; local
    [all...]

Completed in 1255 milliseconds

1 2 3 4 5 6 7 891011>>