Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/app/
DTimePickerDialog.java50 void onTimeSet(TimePicker view, int hourOfDay, int minute); in onTimeSet() argument
73 int hourOfDay, int minute, boolean is24HourView) { in TimePickerDialog() argument
74 this(context, 0, callBack, hourOfDay, minute, is24HourView); in TimePickerDialog()
88 int hourOfDay, int minute, boolean is24HourView) { in TimePickerDialog() argument
92 mInitialMinute = minute; in TimePickerDialog()
129 public void onTimeChanged(TimePicker view, int hourOfDay, int minute) { in onTimeChanged() argument
146 int minute = savedInstanceState.getInt(MINUTE); in onRestoreInstanceState() local
149 mTimePicker.setCurrentMinute(minute); in onRestoreInstanceState()
/frameworks/base/core/tests/coretests/src/android/text/format/
DTimeTest.java192 || local.minute != test.minute2) { in testNormalize1()
196 local.year, local.month, local.monthDay, local.hour, local.minute); in testNormalize1()
210 || local.minute != test.minute2) { in testNormalize1()
214 local.year, local.month, local.monthDay, local.hour, local.minute); in testNormalize1()
229 local.minute += test.offset; in testNormalize1()
233 || local.minute != test.minute2 || local.isDst != test.dst2) { in testNormalize1()
238 local.year, local.month, local.monthDay, local.hour, local.minute, in testNormalize1()
250 local.minute += test.offset; in testNormalize1()
255 || local.minute != test.minute2 || local.isDst != test.dst2) { in testNormalize1()
260 local.year, local.month, local.monthDay, local.hour, local.minute, in testNormalize1()
[all …]
/frameworks/base/core/java/com/android/internal/http/
DHttpDateTime.java76 this.minute = m; in TimeOfDay()
81 int minute; field in HttpDateTime.TimeOfDay
119 time.set(timeOfDay.second, timeOfDay.minute, timeOfDay.hour, date, in parse()
215 int minute = (timeString.charAt(i++) - '0') * 10 in getTime() local
223 return new TimeOfDay(hour, minute, second); in getTime()
/frameworks/base/media/mtp/
DMtpUtils.cpp37 int year, month, day, hour, minute, second; in parseDateTime() local
41 &year, &month, &day, &hour, &minute, &second) != 6) in parseDateTime()
55 tm.tm_min = minute; in parseDateTime()
/frameworks/opt/calendar/src/com/android/calendarcommon/
DRecurrenceProcessor.java267 iterator.minute, in filter()
881 int iteratorMinute = iterator.minute; in expand()
944 int minute = usebyminute in expand() local
947 if (SPEW) Log.i(TAG, " minute=" + minute); in expand()
960 … generated.set(second, minute, hour, day, month, iteratorYear); in expand()
1058 iterator.minute += value; in expand()
1120 int minute = date.minute; in unsafeNormalize() local
1128 minute += addMinutes; in unsafeNormalize()
1129 int addHours = ((minute < 0) ? (minute - 59) : minute) / 60; in unsafeNormalize()
1130 minute -= addHours * 60; in unsafeNormalize()
[all …]
DRecurrenceSet.java291 dtstartTime.minute = 0; in populateComponent()
350 dtstartTime.minute = 0; in populateComponent()
/frameworks/base/core/java/android/text/format/
DTime.java64 public int minute; field in Time
272 this.minute = 0; in clear()
579 this.minute = that.minute; in set()
594 public void set(int second, int minute, int hour, int monthDay, int month, int year) { in set() argument
597 this.minute = minute; in set()
620 this.minute = 0; in set()
793 minute = 0; in setJulianDay()
DDateUtils.java1233 && (endDate.hour | endDate.minute | endDate.second) == 0 in formatDateRange()
1286 boolean startOnTheHour = startDate.minute == 0 && startDate.second == 0; in formatDateRange()
1287 boolean endOnTheHour = endDate.minute == 0 && endDate.second == 0; in formatDateRange()
/frameworks/base/core/java/android/net/
DNetworkPolicyManager.java139 cycle.hour = cycle.minute = cycle.second = 0; in computeLastCycleBoundary()
146 lastMonth.hour = lastMonth.minute = lastMonth.second = 0; in computeLastCycleBoundary()
165 cycle.hour = cycle.minute = cycle.second = 0; in computeNextCycleBoundary()
172 nextMonth.hour = nextMonth.minute = nextMonth.second = 0; in computeNextCycleBoundary()
/frameworks/base/media/libdrm/mobile1/src/jni/
Ddrm1_jni.c316 uint32_t hour, uint32_t minute, uint32_t second) in mkgmtime() argument
327 && hour < 24 && minute < 60 in mkgmtime()
338 SECONDS_PER_HOUR * hour + SECONDS_PER_MINUTE * minute + second)); in mkgmtime()
356 int32_t year, month, day, hour, minute, second; in computeTime() local
362 minute = (time / 100) % 100; in computeTime()
373 if (minute < 0) minute = 0; in computeTime()
374 if (minute > 59) minute = 59; in computeTime()
378 return mkgmtime(year, month, day, hour, minute, second) * 1000; in computeTime()
399 int32_t year, month, day, hour, minute, second; in computeInterval() local
406 minute = (time / 100) % 100; in computeInterval()
[all …]
/frameworks/base/docs/html/guide/tutorials/views/
Dhello-timepicker.jd7 user to select the time by hour, minute and AM or PM.</p>
82 instance of {@link java.util.Calendar} and get the current hour and minute. Finally, we call
115 on the hour and minute. (We'll create this method in the last step.)</p>
123 public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
125 mMinute = minute;
142 <p>This method returns the appropriate String representation of the hour or minute.
/frameworks/base/telephony/java/android/telephony/
DSmsCbMessage.java417 int minute = IccUtils.gsmBcdByteToInt(pdu[10]); in getTimestampMillis() local
439 time.minute = minute; in getTimestampMillis()
/frameworks/base/core/java/android/widget/
DTimePicker.java66 public void onTimeChanged(TimePicker view, int hourOfDay, int minute) {
117 void onTimeChanged(TimePicker view, int hourOfDay, int minute); in onTimeChanged() argument
170 mMinuteSpinner = (NumberPicker) findViewById(R.id.minute); in TimePicker()
305 private SavedState(Parcelable superState, int hour, int minute) { in SavedState() argument
308 mMinute = minute; in SavedState()
DAnalogClock.java226 int minute = mCalendar.minute; in onTimeChanged() local
229 mMinutes = minute + second / 60.0f; in onTimeChanged()
DDateTimeView.java99 mTime = new Date(t.year-1900, t.month, t.monthDay, t.hour, t.minute, 0); in setTime()
122 t.minute = 0; in update()
/frameworks/base/docs/html/resources/tutorials/views/
Dhello-timepicker.jd7 widget, which allows the user to select the hour and minute in a familiar interface.</p>
89 {@link java.util.Calendar} is created to get the current hour and minute. Finally, the
113 the appropriate string representation of the hour or minute&mdash;it will prefix a zero to the
123 public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
125 mMinute = minute;
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
DSmsMessage.java551 int minute = IccUtils.gsmBcdByteToInt(pdu[cur++]); in getSCTimestampMillis() local
573 time.minute = minute; in getSCTimestampMillis()
DGsmServiceStateTracker.java1325 int minute = Integer.parseInt(nitzSubs[4]); in setTimeFromNITZString() local
1326 c.set(Calendar.MINUTE, minute); in setTimeFromNITZString()
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/sms/
DBearerData.java253 int minute = IccUtils.cdmaBcdByteToInt(data[4]); in fromByteArray() local
254 if (minute < 0 || minute > 59) return null; in fromByteArray()
255 ts.minute = minute; in fromByteArray()
270 builder.append(", minute=" + minute); in toString()
/frameworks/base/core/jni/
Dandroid_text_format_Time.cpp538 int minute = n; in android_text_format_Time_parse3339() local
609 minute += n; in android_text_format_Time_parse3339()
613 env->SetIntField(This, g_minField, minute); in android_text_format_Time_parse3339()
/frameworks/base/libs/rs/scriptc/
Drs_time.rsh36 * tm_sec - Seconds after the minute. This ranges from 0 to 59, but possibly
/frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/sms/
DCdmaSmsTest.java291 assertEquals(bearerData.msgCenterTimeStamp.minute, 1); in testMonolithicOne()
299 assertEquals(bearerData.deferredDeliveryTimeAbsolute.minute, 0); in testMonolithicOne()
338 assertEquals(bearerData.msgCenterTimeStamp.minute, 1); in testMonolithicTwo()
346 assertEquals(bearerData.deferredDeliveryTimeAbsolute.minute, 0); in testMonolithicTwo()
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
DCdmaServiceStateTracker.java1257 int minute = Integer.parseInt(nitzSubs[4]); in setTimeFromNITZString() local
1258 c.set(Calendar.MINUTE, minute); in setTimeFromNITZString()
/frameworks/base/api/
Dcurrent.txt20504 field public int minute;
D14.txt20504 field public int minute;