HomeSort by relevance Sort by last modified time
    Searched refs:minute (Results 26 - 50 of 227) sorted by null

12 3 4 5 6 7 8 910

  /external/protobuf/src/google/protobuf/stubs/
time.cc 78 time.minute < 0 || time.minute > 59 ||
126 kSecondsPerMinute * time.minute +
202 int minute; local
203 if ((data = ParseInt(data, 2, 0, 59, &minute)) == NULL) {
206 *offset = (hour * 60 + minute) * 60;
245 int minute = seconds / kSecondsPerMinute; local
251 time->minute = minute;
278 time.hour, time.minute, time.second)
    [all...]
time_test.cc 48 time.hour = time.minute = time.second = 0;
66 EXPECT_EQ(0, time.minute);
77 EXPECT_EQ(59, time.minute);
87 start.minute = 0;
93 end.minute = 59;
158 start.minute = 0;
164 end.minute = 59;
  /cts/tests/tests/location/src/android/location/cts/asn1/base/
Asn1UTCTime.java 39 private int minute; field in class:Asn1UTCTime
56 minute = other.minute;
93 return minute;
97 minute = newMinute;
114 builder.append(twoDigit.format(minute));
133 builder.append(twoDigit.format(minute));
209 minute = Integer.parseInt(result.substring(yearLength + 6, yearLength + 8));
  /external/catch2/projects/SelfTest/UsageTests/
ToStringChrono.tests.cpp 10 auto minute = std::chrono::minutes(1); variable
15 REQUIRE(minute == seconds);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BuddhistCalendar.java 160 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field.
165 int minute, int second)
167 super(year, month, date, hour, minute, second);
CopticCalendar.java 206 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field.
210 int minute, int second) {
211 super(year, month, date, hour, minute, second);
TaiwanCalendar.java 158 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field.
162 int minute, int second)
164 super(year, month, date, hour, minute, second);
CECalendar.java 39 {/* */}, // MINUTE
155 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field.
159 int minute, int second)
162 this.set(year, month, date, hour, minute, second);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BuddhistCalendar.java 169 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field.
175 int minute, int second)
177 super(year, month, date, hour, minute, second);
CopticCalendar.java 227 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field.
232 int minute, int second) {
233 super(year, month, date, hour, minute, second);
TaiwanCalendar.java 169 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field.
174 int minute, int second)
176 super(year, month, date, hour, minute, second);
CECalendar.java 38 {/* */}, // MINUTE
154 * @param minute The value used to set the calendar's {@link #MINUTE MINUTE} time field.
158 int minute, int second)
161 this.set(year, month, date, hour, minute, second);
  /external/apache-http/android/src/android/net/http/
LegacyHttpDateTime.java 76 this.minute = m;
81 int minute; field in class:LegacyHttpDateTime.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);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowTimeTest.java 59 assertEquals(t.minute, t2.minute);
74 assertEquals(t.minute, t2.minute);
95 assertEquals(t.minute, 1);
115 assertEquals(0, t.minute);
179 assertEquals(0, t.minute);
187 assertEquals(0, t.minute);
203 assertEquals(desc, 30, t.minute);
214 assertEquals(desc, 30, t.minute);
    [all...]
  /external/python/dateutil/dateutil/
relativedelta.py 35 year, month, day, hour, minute, second, microsecond:
80 6. Do steps 1 and 2 for hour/hours, minute/minutes, second/seconds,
96 hour=None, minute=None, second=None, microsecond=None):
126 self.minute = None
177 self.minute = minute
183 minute, second, microsecond)):
244 or self.hour is not None or self.minute is not None or
300 minute=self.minute, second=self.second
    [all...]
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
AlarmStorage.java 65 * @param minute the integer of the minute the alarm goes off
68 public Alarm saveAlarm(int month, int date, int hour, int minute) {
75 alarm.minute = minute;
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
AlarmStorage.java 65 * @param minute the integer of the minute the alarm goes off
68 public Alarm saveAlarm(int month, int date, int hour, int minute) {
75 alarm.minute = minute;
  /development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
AlarmStorage.java 65 * @param minute the integer of the minute the alarm goes off
68 public Alarm saveAlarm(int month, int date, int hour, int minute) {
75 alarm.minute = minute;
  /external/libchrome/crypto/
nss_util_unittest.cc 31 exploded.minute = prxtime.tm_min = 52;
  /external/v8/src/
dateparser.cc 73 int& minute = comp_[1]; local
83 if (!IsHour(hour) || !IsMinute(minute) ||
86 if (hour != 24 || minute != 0 || second != 0 || millisecond != 0) {
92 output->set(MINUTE, Smi::FromInt(minute));
  /external/autotest/client/site_tests/power_LoadTest/extension/
time.js 20 minute: 'numeric',
19 hour: 'numeric', property in class:dateToString.formatting
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
XMPDateTimeFactory.java 59 * @param minute minutes
65 int hour, int minute, int second, int nanoSecond)
72 dt.setMinute(minute);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTime.java 60 time.minute = other.minute;
101 time.minute = 0;
113 c.get(Calendar.MINUTE),
128 protected void set(int second, int minute, int hour, int monthDay, int month, int year) {
130 time.minute = minute;
154 time.minute = 0;
269 time.second = time.minute = time.hour = 0;
321 c.set(time.year, time.month, time.monthDay, time.hour, time.minute, time.second)
    [all...]
  /external/autotest/client/cros/video/
collect_golden_images.py 71 start = datetime.timedelta(minutes=tmp.minute, seconds=tmp.second)
92 stop = datetime.timedelta(minutes=tmp.minute, seconds=tmp.second)
  /external/dng_sdk/source/
dng_date_time.h 57 /// \param minute Minute of hour to use from 0 - 59.
58 /// \param second Second of minute to use from 0 - 59.
64 uint32 minute,
287 uint32 minute,

Completed in 2221 milliseconds

12 3 4 5 6 7 8 910