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

1 2 3 4 5 6 7 8 9

  /cts/tests/tests/app/src/android/app/cts/
TimePickerDialogTest.java 32 private static final String MINUTE = "minute";
57 public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
59 mCallbackMinute = minute;
73 assertEquals(TARGET_MINUTE, b.getInt(MINUTE));
76 int minute = 13; local
78 mOnTimeSetListener, TARGET_HOUR, minute, false);
83 assertEquals(minute, b.getInt(MINUTE));
95 final int minute = 34 local
109 int minute = 18; local
120 int minute = 27; local
    [all...]
  /external/icu4c/test/compat/
tzone.pl 8 print "Usage: tzone [year month day hour minute]\n";
22 my $minute = 0;
26 ($year, $month, $day, $hour, $minute) = @ARGV;
27 print "The date we are using is: $month-$day-$year $hour:$minute.\n";
52 my @result = `./tzdate $year $month $day $hour $minute $USECURRENT`;
tzdate.c 32 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime);
39 int year, month, day, hour, minute; local
55 minute = atoi(argv[5]);
61 systemtime = getSystemCurrentTime(systime, sysyear, month, day, hour, minute, useCurrentTime);
109 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime) {
123 ts.tm_min = minute;
  /frameworks/base/core/java/android/app/
TimePickerDialog.java 48 * @param minute The minute that was set.
50 void onTimeSet(TimePicker view, int hourOfDay, int minute);
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
154 int minute = savedInstanceState.getInt(MINUTE); local
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/datetime/
DateTime.java 38 private final int minute; field in class:DateTime
42 public DateTime(String yearString, int month, int day, int hour, int minute, int second, int timeZone) {
44 this.date = convertToDate(year, month, day, hour, minute, second, timeZone);
48 this.minute = minute;
69 public static Date convertToDate(int year, int month, int day, int hour, int minute, int second, int timeZone) {
71 c.set(year, month - 1, day, hour, minute, second);
76 c.add(Calendar.MINUTE, -1 * minutes);
103 return minute;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
DateWidgets2.java 48 public void onTimeChanged(TimePicker view, int hourOfDay, int minute) {
49 updateDisplay(hourOfDay, minute);
54 private void updateDisplay(int hourOfDay, int minute) {
58 .append(pad(minute)));
  /external/chromium/net/ftp/
ftp_directory_listing_parser_unittest.h 28 int minute; member in struct:net::FtpDirectoryListingParserTest::SingleLineTestData
58 EXPECT_EQ(test_case.minute, time_exploded.minute);
69 mock_current_time_exploded.minute = 45;
ftp_directory_listing_parser_unittest.cc 78 mock_current_time_exploded.minute = 45;
114 int year, month, day_of_month, hour, minute; local
119 base::StringToInt(lines[8 * i + 7], &minute);
142 EXPECT_EQ(minute, time_exploded.minute);
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
SunCalculator.java 83 int minute = (int) Math.round((time - hour) * 60); local
84 if (minute == 60) {
92 int minute = (int) Math.round((time - hour) * 60); local
93 if (minute == 60) {
94 minute = 0;
96 return minute;
101 int minute = (int) Math.round((time - hour) * 60); local
102 if (minute == 60) {
103 minute = 0;
106 return (hour * 60 + minute) / 1440.0f
112 int minute = (int) Math.round((time - hour) * 60); local
    [all...]
  /libcore/luni/src/main/java/javax/xml/datatype/
XMLGregorianCalendar.java 105 * For a value of 24, the minute and second field must be zero per
109 * <a name="datetimefield-minute"/>
111 * <td> minute </td>
200 * int minute,
209 * int minute,
316 * @param minute value constraints are summarized in
317 * <a href="#datetimefield-minute">minute field of date/time field mapping table</a>.
327 public void setTime(int hour, int minute, int second) {
331 minute,
    [all...]
  /frameworks/av/media/mtp/
MtpUtils.cpp 32 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;
  /external/webkit/Source/WebCore/html/
DateComponents.cpp 169 static bool withinHTMLDateLimits(int year, int month, int monthDay, int hour, int minute, int second, int millisecond)
182 return !hour && !minute && !second && !millisecond;
238 bool DateComponents::addMinute(int minute)
245 // minute can be negative or greater than 59.
246 minute += m_minute;
247 if (minute > 59) {
248 carry = minute / 60;
249 minute = minute % 60;
252 minute += carry * 60
308 int minute; local
420 int minute; local
    [all...]
  /libcore/luni/src/main/java/java/util/
Date.java 87 * @param minute
88 * the minute of the hour, 0 - 59.
94 public Date(int year, int month, int day, int hour, int minute) {
96 cal.set(1900 + year, month, day, hour, minute);
112 * @param minute
113 * the minute of the hour, 0 - 59.
115 * the second of the minute, 0 - 59.
121 public Date(int year, int month, int day, int hour, int minute, int second) {
123 cal.set(1900 + year, month, day, hour, minute, second);
266 * Returns the gregorian calendar minute of the hour for this {@code Date} object
380 int hour = -1, minute = -1, second = -1, zoneOffset = 0, minutesOffset = 0; local
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
DateMath.h 129 , minute(0)
143 , minute(inTm.tm_min)
174 ret.tm_min = minute;
196 minute = rhs.minute;
214 int minute; member in struct:JSC::GregorianDateTime
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPDate.java 120 /** minute member
122 protected int minute; field in class:SIPDate
144 this.minute == other.minute &&
157 minute = -1;
247 minute = javaCal.get(Calendar.MINUTE);
270 if (minute < 10) {
271 minuteString = "0" + minute;
273 minuteString = "" + minute;
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
DateConversion.cpp 93 t.hour, t.minute, t.second,
97 t.hour, t.minute, t.second,
104 snprintf(buffer, DateConversionBufferSize, "%02d:%02d:%02d GMT", t.hour, t.minute, t.second);
  /external/chromium/base/
time_mac.cc 67 date.minute = exploded.minute;
94 exploded->minute = date.minute;
  /frameworks/base/core/tests/coretests/src/android/text/format/
TimeTest.java 36 // + ' ' + t.hour + ':' + t.minute
192 || local.minute != test.minute2) {
196 local.year, local.month, local.monthDay, local.hour, local.minute);
210 || local.minute != test.minute2) {
214 local.year, local.month, local.monthDay, local.hour, local.minute);
229 local.minute += test.offset;
233 || local.minute != test.minute2 || local.isDst != test.dst2) {
238 local.year, local.month, local.monthDay, local.hour, local.minute,
241 "minute test index " + index + ", normalize(): expected local " + expectedTime
250 local.minute += test.offset
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
videotext.h 88 int minute; /* requested minute (hexadecimal) */ member in struct:__anon23429
109 int minute; /* minute (hexadecimal) */ member in struct:__anon23430
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
videotext.h 88 int minute; /* requested minute (hexadecimal) */ member in struct:__anon25019
109 int minute; /* minute (hexadecimal) */ member in struct:__anon25020
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
videotext.h 88 int minute; /* requested minute (hexadecimal) */ member in struct:__anon26531
109 int minute; /* minute (hexadecimal) */ member in struct:__anon26532
  /frameworks/base/core/java/com/android/internal/http/
HttpDateTime.java 76 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 local
223 return new TimeOfDay(hour, minute, second);
  /frameworks/base/telephony/java/android/telephony/
SmsCbEtwsInfo.java 140 int minute = IccUtils.gsmBcdByteToInt(mWarningSecurityInformation[4]); local
162 time.minute = minute;
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 91 assertEquals(time.minute, anotherTime.minute);
294 || local.minute != test.minute2) {
298 local.year, local.month, local.monthDay, local.hour, local.minute);
312 || local.minute != test.minute2) {
316 local.year, local.month, local.monthDay, local.hour, local.minute);
331 local.minute += test.offset;
335 || local.minute != test.minute2 || local.isDst != test.dst2) {
340 local.year, local.month, local.monthDay, local.hour, local.minute,
343 "minute test index " + index + ", normalize(): expected local
543 final int minute = 21; local
    [all...]
  /libcore/luni/src/main/java/java/sql/
Time.java 32 * <i>Minute</i> and <i>Second</i>. The <i>Year</i>, <i>Month</i> and
241 int minute = Integer.parseInt(timeString.substring(firstIndex + 1, local
245 return new Time(hour, minute, second);

Completed in 578 milliseconds

1 2 3 4 5 6 7 8 9