Searched defs:minute (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/media/mtp/
H A DMtpUtils.cpp32 hh is replaced by the hour (00-23), mm is replaced by the minute (00-59), and ss by the
37 int year, month, day, hour, minute, second; local
41 &year, &month, &day, &hour, &minute, &second) != 6)
55 tm.tm_min = minute;
/frameworks/base/core/java/com/android/internal/http/
H A DHttpDateTime.java76 this.minute = m;
81 int minute; field in class:HttpDateTime.TimeOfDay
119 time.set(timeOfDay.second, timeOfDay.minute, timeOfDay.hour, date,
215 int minute = (timeString.charAt(i++) - '0') * 10
223 return new TimeOfDay(hour, minute, second);
/frameworks/base/core/java/android/app/
H A DTimePickerDialog.java48 * @param minute The minute that was set.
50 void onTimeSet(TimePicker view, int hourOfDay, int minute); argument
54 private static final String MINUTE = "minute";
68 * @param minute The initial minute.
73 int hourOfDay, int minute, boolean is24HourView) {
74 this(context, 0, callBack, hourOfDay, minute, is24HourView);
82 * @param minute The initial minute
71 TimePickerDialog(Context context, OnTimeSetListener callBack, int hourOfDay, int minute, boolean is24HourView) argument
85 TimePickerDialog(Context context, int theme, OnTimeSetListener callBack, int hourOfDay, int minute, boolean is24HourView) argument
123 onTimeChanged(TimePicker view, int hourOfDay, int minute) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTimePicker.java43 * hour, each minute digit, and AM/PM (if applicable) can be conrolled by
67 public void onTimeChanged(TimePicker view, int hourOfDay, int minute) {
116 * @param minute The current minute.
118 void onTimeChanged(TimePicker view, int hourOfDay, int minute); argument
170 // minute
171 mMinuteSpinner = (NumberPicker) findViewById(R.id.minute);
313 private SavedState(Parcelable superState, int hour, int minute) { argument
316 mMinute = minute;
442 * @return The current minute
[all...]
/frameworks/base/core/java/android/text/format/
H A DTime.java53 * True if this is an allDay event. The hour, minute, second fields are
66 public int minute; field in class:Time
277 this.minute = 0;
297 * hour}, {@code minute}, and {@code second} are not 0.
392 * <code>minute</code>, and <code>second</code> fields are set to zero;
449 * {@link #minute}, and {@link #second} fields are set to zero.
559 this.minute = that.minute;
574 public void set(int second, int minute, int hour, int monthDay, int month, int year) { argument
577 this.minute
[all...]
/frameworks/base/core/jni/
H A Dandroid_text_format_Time.cpp535 // minute
539 int minute = n; local
604 // minute
609 minute += n;
613 env->SetIntField(This, g_minField, minute);
616 // we need to normalize after applying the hour and minute offsets
662 g_minField = env->GetFieldID(timeClass, "minute", "I");
/frameworks/base/media/libdrm/mobile1/src/jni/
H A Ddrm1_jni.c31 #define MS_PER_MINUTE 60 * MS_PER_SECOND /* Milliseconds per minute */
35 #define SECONDS_PER_MINUTE 60 /* Seconds per minute*/
308 * \param minute the minute (0 - 59)
316 uint32_t hour, uint32_t minute, uint32_t second)
327 && hour < 24 && minute < 60
338 SECONDS_PER_HOUR * hour + SECONDS_PER_MINUTE * minute + second));
350 * <code>time = hour * 10000 + minute * 100 + second</code>
356 int32_t year, month, day, hour, minute, second; local
362 minute
314 mkgmtime( uint32_t year, uint32_t month, uint32_t day, uint32_t hour, uint32_t minute, uint32_t second) argument
399 int32_t year, month, day, hour, minute, second; local
[all...]

Completed in 519 milliseconds