/frameworks/opt/telephony/src/java/com/android/internal/telephony/nitz/ |
D | TimeZoneLookupHelper.java | 198 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 …]
|
D | TimeZoneSuggesterImpl.java | 241 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/ |
D | CountryTimeZones.java | 203 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/ |
D | GroupWhenCoordinator.kt | 62 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/ |
D | SystemUpdatePolicy.java | 645 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/ |
D | NotifGroupController.kt | 25 fun setNotificationGroupWhen(whenMillis: Long)
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableNotificationRowController.java | 425 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()
|
D | ExpandableNotificationRow.java | 871 public void setNotificationGroupWhen(long whenMillis) { 873 mChildrenContainer.setNotificationGroupWhen(whenMillis); 874 mPublicLayout.setNotificationWhen(whenMillis); 876 Log.w(TAG, "setNotificationGroupWhen( whenMillis: " + whenMillis + ")"
|
D | NotificationContentView.java | 2391 public void setNotificationWhen(long whenMillis) { 2394 headerViewWrapper.setNotificationWhen(whenMillis);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/wrapper/ |
D | NotificationHeaderViewWrapper.java | 360 public void setNotificationWhen(long whenMillis) { in setNotificationWhen() argument 364 ((DateTimeView) timeView).setTime(whenMillis); in setNotificationWhen()
|
/frameworks/base/core/java/android/util/ |
D | TimeUtils.java | 102 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/ |
D | NotificationChildrenContainer.java | 311 public void setNotificationGroupWhen(long whenMillis) { in setNotificationGroupWhen() argument 313 mGroupHeaderWrapper.setNotificationWhen(whenMillis); in setNotificationGroupWhen() 316 mMinimizedGroupHeaderWrapper.setNotificationWhen(whenMillis); in setNotificationGroupWhen()
|