Searched refs:hour (Results 26 - 33 of 33) sorted by relevance

12

/frameworks/base/telephony/java/com/android/internal/telephony/cdma/
H A DBearerData.java249 int hour = IccUtils.cdmaBcdByteToInt(data[3]);
250 if (hour < 0 || hour > 23) return null;
251 ts.hour = hour;
268 builder.append(", hour=" + hour);
/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DRecurrenceSet.java305 dtstartTime.hour = 0;
364 dtstartTime.hour = 0;
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSmsMessage.java595 int hour = IccUtils.gsmBcdByteToInt(mPdu[mCur++]);
617 time.hour = hour;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DAccessPoint.java879 long hour = (min/60)%60; //hours
881 if (hour > 0) summary.append(Long.toString(hour) + "h ");
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/cdma/sms/
H A DCdmaSmsTest.java294 assertEquals(bearerData.msgCenterTimeStamp.hour, 11);
302 assertEquals(bearerData.deferredDeliveryTimeAbsolute.hour, 0);
341 assertEquals(bearerData.msgCenterTimeStamp.hour, 11);
349 assertEquals(bearerData.deferredDeliveryTimeAbsolute.hour, 0);
/frameworks/base/core/java/android/service/notification/
H A DZenModeConfig.java1025 final int hour = tryParseInt(value.substring(0, i), -1);
1027 return isValidHour(hour) && isValidMinute(minute) ? new int[] { hour, minute } : null;
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
H A DRadialPickerLayout.java208 // Initialize the currently-selected hour and minute.
236 * Set either the hour or the minute. Will set the internal value, and set the selection.
253 * Check if a given hour appears in the outer circle or the inner circle
254 * @return true if the hour is in the inner circle, false if it's in the outer circle.
270 * If the hours are showing, return the current hour. If the minutes are showing, return the
294 * Set the internal value for the hour, minute, or AM/PM.
758 time.hour = getHours();
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DServiceStateTracker.java3570 /* NITZ time (hour:min:sec) will be in UTC but it supplies the timezone
3593 int hour = Integer.parseInt(nitzSubs[3]);
3594 c.set(Calendar.HOUR, hour);

Completed in 258 milliseconds

12