Home
last modified time | relevance | path

Searched refs:gmtOffset (Results 1 – 3 of 3) sorted by relevance

/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
DTimeZonePickerUtils.java92 final int gmtOffset = tz.getOffset(timeMillis); in buildGmtDisplayName() local
94 appendGmtOffset(sb, gmtOffset); in buildGmtDisplayName()
121 public static void appendGmtOffset(StringBuilder sb, final int gmtOffset) { in appendGmtOffset() argument
124 if (gmtOffset < 0) { in appendGmtOffset()
130 final int p = Math.abs(gmtOffset); in appendGmtOffset()
DTimeZoneInfo.java140 final int gmtOffset = mTz.getOffset(now); in getGmtDisplayName() local
145 cacheKey = (int) (gmtOffset + 36 * DateUtils.HOUR_IN_MILLIS); in getGmtDisplayName()
147 cacheKey = (int) (gmtOffset - 36 * DateUtils.HOUR_IN_MILLIS); in getGmtDisplayName()
170 TimeZonePickerUtils.appendGmtOffset(mSB, gmtOffset); in getGmtDisplayName()
/frameworks/base/services/core/java/com/android/server/
DAlarmManagerService.java870 int gmtOffset = zone.getOffset(System.currentTimeMillis()); in setTimeZoneImpl() local
871 setKernelTimezone(mNativeData, -(gmtOffset / 60000)); in setTimeZoneImpl()
2390 int gmtOffset = zone.getOffset(System.currentTimeMillis()); in onReceive() local
2391 setKernelTimezone(mNativeData, -(gmtOffset / 60000)); in onReceive()