Home
last modified time | relevance | path

Searched refs:whenMillis (Results 1 – 12 of 12) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/nitz/
DTimeZoneLookupHelper.java198 public CountryResult lookupByCountry(@NonNull String isoCountryCode, long whenMillis) { in lookupByCountry() argument
217 countryTimeZones.getEffectiveTimeZoneMappingsAt(whenMillis); in lookupByCountry()
222 debugInfo = "No effective time zones found at whenMillis=" + whenMillis; in lookupByCountry()
226 debugInfo = "One effective time zone found at whenMillis=" + whenMillis; in lookupByCountry()
229 whenMillis, effectiveTimeZoneMappings, countryDefaultZone); in lookupByCountry()
234 + " whenMillis=" + whenMillis; in lookupByCountry()
241 long whenMillis, @NonNull List<TimeZoneMapping> effectiveTimeZoneMappings, in countryUsesDifferentOffsets() argument
244 int countryDefaultOffset = countryDefaultZone.getOffset(whenMillis); in countryUsesDifferentOffsets()
251 int candidateOffset = timeZone.getOffset(whenMillis); in countryUsesDifferentOffsets()
294 @Nullable Boolean isDst, long whenMillis) { in offsetMatchesAtTime() argument
[all …]
DTimeZoneSuggesterImpl.java241 int slotIndex, @NonNull String countryIsoCode, long whenMillis) { in findTimeZoneFromNetworkCountryCode() argument
250 + " whenMillis=" + whenMillis + ", countryIsoCode=" + countryIsoCode); in findTimeZoneFromNetworkCountryCode()
252 countryIsoCode, whenMillis); in findTimeZoneFromNetworkCountryCode()
271 + ", whenMillis=" + whenMillis + ", lookupResult=" + lookupResult); in findTimeZoneFromNetworkCountryCode()
/frameworks/base/core/java/android/timezone/
DCountryTimeZones.java203 public boolean hasUtcZone(long whenMillis) { in hasUtcZone() argument
204 return mDelegate.hasUtcZone(whenMillis); in hasUtcZone()
222 public OffsetResult lookupByOffsetWithBias(long whenMillis, @Nullable TimeZone bias, in lookupByOffsetWithBias() argument
226 whenMillis, bias, totalOffsetMillis, isDst); in lookupByOffsetWithBias()
245 public OffsetResult lookupByOffsetWithBias(long whenMillis, @Nullable TimeZone bias, in lookupByOffsetWithBias() argument
248 mDelegate.lookupByOffsetWithBias(whenMillis, bias, totalOffsetMillis); in lookupByOffsetWithBias()
262 public List<TimeZoneMapping> getEffectiveTimeZoneMappingsAt(long whenMillis) { in getEffectiveTimeZoneMappingsAt() argument
264 mDelegate.getEffectiveTimeZoneMappingsAt(whenMillis); in getEffectiveTimeZoneMappingsAt()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DGroupWhenCoordinator.kt62 val whenMillis = calculateGroupNotificationTime(groupEntry, now) in <lambda>() constant
63 notificationGroupTimes[groupEntry] = whenMillis in <lambda>()
64 if (whenMillis > now) { in <lambda>()
65 closestFutureTime = min(closestFutureTime, whenMillis) in <lambda>()
/frameworks/base/core/java/android/app/admin/
DSystemUpdatePolicy.java645 long whenMillis = TimeUnit.HOURS.toMillis(query.get(Calendar.HOUR_OF_DAY)) in getInstallationOptionRegardlessFreezeAt() local
653 if ((windowStartMillis <= whenMillis && whenMillis <= windowEndMillis) in getInstallationOptionRegardlessFreezeAt()
655 && (windowStartMillis <= whenMillis || whenMillis <= windowEndMillis))) { in getInstallationOptionRegardlessFreezeAt()
657 (windowEndMillis - whenMillis + dayInMillis) % dayInMillis); in getInstallationOptionRegardlessFreezeAt()
660 (windowStartMillis - whenMillis + dayInMillis) % dayInMillis); in getInstallationOptionRegardlessFreezeAt()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/
DNotifGroupController.kt25 fun setNotificationGroupWhen(whenMillis: Long)
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableNotificationRowController.java425 public void setNotificationGroupWhen(long whenMillis) { in setNotificationGroupWhen() argument
427 mView.setNotificationGroupWhen(whenMillis); in setNotificationGroupWhen()
429 Log.w(TAG, "Called setNotificationTime(" + whenMillis + ") on a leaf row"); in setNotificationGroupWhen()
DExpandableNotificationRow.java871 public void setNotificationGroupWhen(long whenMillis) {
873 mChildrenContainer.setNotificationGroupWhen(whenMillis);
874 mPublicLayout.setNotificationWhen(whenMillis);
876 Log.w(TAG, "setNotificationGroupWhen( whenMillis: " + whenMillis + ")"
DNotificationContentView.java2391 public void setNotificationWhen(long whenMillis) {
2394 headerViewWrapper.setNotificationWhen(whenMillis);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/
DNotificationHeaderViewWrapper.java360 public void setNotificationWhen(long whenMillis) { in setNotificationWhen() argument
364 ((DateTimeView) timeView).setTime(whenMillis); in setNotificationWhen()
/frameworks/base/core/java/android/util/
DTimeUtils.java102 int offsetMillis, boolean isDst, long whenMillis, String countryIso) { in getIcuTimeZone() argument
114 whenMillis, bias, offsetMillis, isDst); in getIcuTimeZone()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationChildrenContainer.java311 public void setNotificationGroupWhen(long whenMillis) { in setNotificationGroupWhen() argument
313 mGroupHeaderWrapper.setNotificationWhen(whenMillis); in setNotificationGroupWhen()
316 mMinimizedGroupHeaderWrapper.setNotificationWhen(whenMillis); in setNotificationGroupWhen()