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

1 2 3 4 5 6 7 8 91011>>

  /developers/build/prebuilts/gradle/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/
TimerFormat.java 41 * Update the time to display. Separates that time into the hours, minutes, seconds.
56 long minutes = seconds / 60; local
57 seconds = seconds - minutes * 60;
58 long hours = minutes / 60;
59 minutes = minutes - hours * 60;
64 // and minutes and seconds could be zero, so since we do not show fractions of seconds
66 if (hours == 0 && minutes == 0 && seconds == 0) {
75 minutes++;
76 if (minutes == 60)
    [all...]
  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/
TimerFormat.java 41 * Update the time to display. Separates that time into the hours, minutes, seconds.
56 long minutes = seconds / 60; local
57 seconds = seconds - minutes * 60;
58 long hours = minutes / 60;
59 minutes = minutes - hours * 60;
64 // and minutes and seconds could be zero, so since we do not show fractions of seconds
66 if (hours == 0 && minutes == 0 && seconds == 0) {
75 minutes++;
76 if (minutes == 60)
    [all...]
  /development/samples/browseable/Timer/src/com.example.android.wearable.timer/util/
TimerFormat.java 41 * Update the time to display. Separates that time into the hours, minutes, seconds.
56 long minutes = seconds / 60; local
57 seconds = seconds - minutes * 60;
58 long hours = minutes / 60;
59 minutes = minutes - hours * 60;
64 // and minutes and seconds could be zero, so since we do not show fractions of seconds
66 if (hours == 0 && minutes == 0 && seconds == 0) {
75 minutes++;
76 if (minutes == 60)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
TimerTextController.java 46 int minutes = (int) (remainder / MINUTE_IN_MILLIS); local
57 minutes++;
58 if (minutes == 60) {
59 minutes = 0;
65 String time = Utils.getTimeString(mTextView.getContext(), hours, minutes, seconds);
66 if (isNegative && !(hours == 0 && minutes == 0 && seconds == 0)) {
  /external/flac/include/share/grabbag/
cuesheet.h 32 unsigned grabbag__cuesheet_msf_to_frame(unsigned minutes, unsigned seconds, unsigned frames);
33 void grabbag__cuesheet_frame_to_msf(unsigned frame, unsigned *minutes, unsigned *seconds, unsigned *frames);
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.arithmetic/
op_+.pass.cpp 24 const std::chrono::minutes m(3);
25 std::chrono::minutes m2 = +m;
30 constexpr std::chrono::minutes m(3);
31 constexpr std::chrono::minutes m2 = +m;
op_-.pass.cpp 24 const std::chrono::minutes m(3);
25 std::chrono::minutes m2 = -m;
30 constexpr std::chrono::minutes m(3);
31 constexpr std::chrono::minutes m2 = -m;
op_+=.pass.cpp 27 s += std::chrono::minutes(2);
38 s += std::chrono::minutes(2);
op_-=.pass.cpp 27 s -= std::chrono::minutes(2);
38 s -= std::chrono::minutes(2);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.duration/time.duration.arithmetic/
op_+.pass.cpp 24 const std::chrono::minutes m(3);
25 std::chrono::minutes m2 = +m;
30 constexpr std::chrono::minutes m(3);
31 constexpr std::chrono::minutes m2 = +m;
op_-.pass.cpp 24 const std::chrono::minutes m(3);
25 std::chrono::minutes m2 = -m;
30 constexpr std::chrono::minutes m(3);
31 constexpr std::chrono::minutes m2 = -m;
op_+=.pass.cpp 27 s += std::chrono::minutes(2);
38 s += std::chrono::minutes(2);
op_-=.pass.cpp 27 s -= std::chrono::minutes(2);
38 s -= std::chrono::minutes(2);
  /external/autotest/client/site_tests/power_LoadTest/extension/
params.js 10 // Convert minutes to milliseconds
11 function minutes(m) { function
15 var test_time_ms = minutes(60);
urls.js 25 duration: minutes(60),
36 // Page cycle through popular external websites for 36 minutes
40 duration: minutes(36),
47 // After 36 minutes, actively read e-mail for 12 minutes
50 start: minutes(36) + seconds(1),
51 duration: minutes(12) - seconds(1),
52 delay: minutes(5), // 5 minutes between full gmail refresh
61 // After 36 minutes, start streaming audio (background tab), total playtim
    [all...]
  /external/toybox/toys/other/
uptime.c 17 of users, and the system load averages for the past 1, 5 and 15 minutes.
31 unsigned int days, hours, minutes; local
52 minutes = info.uptime%60;
65 minutes, (minutes!=1)?"s":"");
71 if (hours) xprintf("%2d:%02d, ", hours, minutes);
72 else printf("%d min, ", minutes);
  /packages/apps/DeskClock/src/com/android/deskclock/data/
TimerStringFormatter.java 32 * Format "7 hours 52 minutes 14 seconds remaining"
41 final int minutes; local
47 // Wind back and fix the hours and minutes as needed.
51 minutes = 0;
55 minutes = roundedMinutes;
60 minutes = roundedMinutes;
66 minutes = roundedMinutes;
70 final String minSeq = Utils.getNumberFormattedQuantityString(context, R.plurals.minutes,
71 minutes);
78 final String remainingSuffix = context.getString((minutes > 1 || hours > 1 || seconds > 1
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/test/
TimedTrace.cc 51 unsigned int minutes = (uint32_t) floor(_timeEllapsedSec / 60.0); local
52 double seconds = _timeEllapsedSec - minutes * 60;
56 minutes, seconds, message);
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeVoiceActivity.java 50 int minutes = intent.getIntExtra(EXTRA_DO_NOT_DISTURB_MODE_MINUTES, -1); local
55 if (minutes > 0) {
56 condition = ZenModeConfig.toTimeCondition(this, minutes, UserHandle.myUserId());
69 notifySuccess(getChangeSummary(mode, minutes));
88 private CharSequence getChangeSummary(int mode, int minutes) {
106 if (minutes < 0 || mode == Global.ZEN_MODE_OFF) {
110 long time = System.currentTimeMillis() + minutes * MINUTES_MS;
116 if (minutes < 60) {
117 return res.getQuantityString(byMinute, minutes, minutes, formattedTime)
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
TimeUtilities.java 32 long minutes = duration % 60; local
41 if (result.length() > 1 || minutes != 0) {
42 result.append(minutes);
83 long minutes = duration % 60; local
98 if (result.length() > 1 || minutes != 0) {
99 result.append(minutes);
  /external/vogar/src/vogar/util/
TimeUtilities.java 32 long minutes = duration % 60; local
41 if (result.length() > 1 || minutes != 0) {
42 result.append(minutes);
83 long minutes = duration % 60; local
98 if (result.length() > 1 || minutes != 0) {
99 result.append(minutes);
  /frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
PlaybackSeekDataProviderSample.java 63 long minutes = seconds / 60; local
64 long hours = minutes / 60;
65 seconds -= minutes * 60;
66 minutes -= hours * 60;
71 if (minutes < 10) {
75 b.append(minutes).append(':');
  /external/autotest/client/cros/video/
screenshot_file_namer.py 56 minutes, seconds = divmod(remainder, 60)
62 hours, minutes, seconds, milliseconds)
  /libcore/ojluni/src/main/java/java/time/
ZoneOffset.java 94 * This is usually a fixed number of hours and minutes.
110 * The fields of hours, minutes and seconds make assumptions that are valid for the
205 final int hours, minutes, seconds; local
211 minutes = 0;
216 minutes = parseNumber(offsetId, 3, false);
221 minutes = parseNumber(offsetId, 4, true);
226 minutes = parseNumber(offsetId, 3, false);
231 minutes = parseNumber(offsetId, 4, true);
242 return ofHoursMinutesSeconds(-hours, -minutes, -seconds);
244 return ofHoursMinutesSeconds(hours, minutes, seconds)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EventViewUtils.java 41 // Constructs a label given an arbitrary number of minutes. For example,
42 // if the given minutes is 63, then this returns the string "63 minutes".
43 // As another example, if the given minutes is 120, then this returns
45 public static String constructReminderLabel(Context context, int minutes, boolean abbrev) {
49 if (minutes % 60 != 0) {
50 value = minutes;
56 } else if (minutes % (24 * 60) != 0) {
57 value = minutes / 60;
60 value = minutes / (24 * 60)
124 int minutes = reminderMinuteValues.get(minuteSpinner.getSelectedItemPosition()); local
    [all...]

Completed in 234 milliseconds

1 2 3 4 5 6 7 8 91011>>