HomeSort by relevance Sort by last modified time
    Searched refs:minute (Results 51 - 75 of 250) sorted by null

1 23 4 5 6 7 8 910

  /external/icu4c/i18n/unicode/
gregocal.h 111 * cout << "MINUTE: " << calendar->get( UCAL_MINUTE, success ) << endl;
133 * cout << "MINUTE: " << calendar->get( UCAL_MINUTE, success ) << endl;
253 * @param minute The value used to set the MINUTE time field in the calendar.
258 GregorianCalendar(int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, UErrorCode& success);
269 * @param minute The value used to set the MINUTE time field in the calendar.
275 GregorianCalendar(int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, int32_t second, UErrorCode& success);
    [all...]
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DateTimeEditor.java 100 int minute) {
103 d.setMinutes(minute);
  /external/chromium/net/ftp/
ftp_directory_listing_parser_windows.cc 53 if (!base::StringToInt(time_parts[1], &time_exploded.minute))
ftp_util_unittest.cc 172 EXPECT_EQ(kTestCases[i].expected_minute, time_exploded.minute);
ftp_util.cc 182 &time_exploded.minute))
193 &time_exploded.minute))
  /external/libxml2/include/libxml/
nanoftp.h 54 * @minute: the minute
57 * Note that only one of year and day:minute are specified.
64 int minute);
  /external/webkit/Source/WebCore/html/
DateComponents.h 44 // * Time type: hour-minute-second-millisecond
45 // * DateTime or DateTimeLocal type: year-month-day hour-minute-second-millisecond
63 int minute() const { return m_minute; } function in class:WebCore::DateComponents
99 // Sets hour, minute, second and millisecond.
101 // Sets year, month, monthDay, hour, minute, second and millisecond.
103 // Sets year, month, monthDay, hour, minute, second and millisecond, and adjusts timezone.
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmTimePickerDialogFragment.java 92 void onDialogTimeSet(Alarm alarm, int hourOfDay, int minute);
AnalogClock.java 242 int minute = mCalendar.minute; local
247 mMinutes = minute + second / 60.0f;
  /external/chromium/base/
time_unittest.cc 37 EXPECT_EQ(tms.tm_min, exploded.minute);
101 EXPECT_EQ(0, exploded.minute);
220 exploded.minute = 0;
time_win.cc 190 st.wMinute = exploded.minute;
236 exploded->minute = st.wMinute;
  /external/chromium/chrome/browser/extensions/
convert_web_app_unittest.cc 64 base::Time GetTestTime(int year, int month, int day, int hour, int minute,
71 exploded.minute = minute;
  /frameworks/base/core/java/android/widget/
AnalogClock.java 230 int minute = mCalendar.minute; local
233 mMinutes = minute + second / 60.0f;
TimePicker.java 43 * 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);
170 // minute
171 mMinuteSpinner = (NumberPicker) findViewById(R.id.minute);
246 setCurrentMinute(mTempCalendar.get(Calendar.MINUTE));
313 private SavedState(Parcelable superState, int hour, int minute) {
316 mMinute = minute;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/bsdi/
SDL_syscdrom.c 55 msf_to_frame(int minute, int second, int frame)
57 return(minute * FRAMES_PER_MINUTE + second * FRAMES_PER_SECOND + frame);
458 int sts, minute, second, frame, eminute, esecond, eframe; local
463 frame_to_msf(start, &minute, &second, &frame);
465 cdb[3] = minute;
  /external/chromium/net/base/
x509_cert_types.cc 112 exploded.minute = ParseIntAndAdvance(&field, 2, &valid);
  /libcore/luni/src/main/java/java/util/
Calendar.java 624 * minute within the hour. E.g., at 10:04:15.250 PM the {@code MINUTE}
627 public static final int MINUTE = 12;
631 * second within the minute. E.g., at 10:04:15.250 PM the
696 "HOUR_OF_DAY", "MINUTE", "SECOND", "MILLISECOND",
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaListView.java 277 int minute = t.minute; local
281 t.minute = minute;
  /packages/apps/Settings/src/com/android/settings/
DateTimeSettings.java 200 public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
203 setTime(activity, hourOfDay, minute);
264 calendar.get(Calendar.MINUTE),
294 calendar.get(Calendar.MINUTE));
367 /* package */ static void setTime(Context context, int hourOfDay, int minute) {
371 c.set(Calendar.MINUTE, minute);
  /external/webkit/Source/JavaScriptCore/wtf/
DateMath.cpp 490 static inline double ymdhmsToSeconds(long year, int mon, int day, int hour, int minute, double second)
497 return ((days * hoursPerDay + hour) * minutesPerHour + minute) * secondsPerMinute + second;
670 // Discard leap seconds by clamping to the end of a minute.
851 long minute = 0; local
887 if (!parseLong(dateString, &newPosStr, 10, &minute))
891 if (minute < 0 || minute > 59)
1003 return ymdhmsToSeconds(year, month + 1, day, hour, minute, second) * msPerSecond;
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TimePickerTest.java 121 // set the same minute as current
249 public void onTimeChanged(TimePicker view, int hourOfDay, int minute) {
252 mNotifiedMinute = minute;
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DateTest.java 101 int minute, int second) {
102 aCal.set(year, month, date, hour, minute, second);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
index.php 76 $minute = substr($timePart,10,2); variable
77 $timeStamp = mktime($hour, $minute, 0, $month, $day, $year);
  /external/openssl/crypto/
o_time.c 179 short year, month, day, hour, minute, second, member in struct:vms_vectime
203 result->tm_min = time_values.minute;
  /external/qemu/distrib/sdl-1.2.15/src/cdrom/mint/
SDL_syscdrom.c 205 entry.cdte_addr.msf.minute,
265 info.cdsc_absaddr.msf.minute,

Completed in 1617 milliseconds

1 23 4 5 6 7 8 910