Searched refs:rawOffset (Results 1 – 4 of 4) sorted by relevance
/libcore/support/src/test/java/tests/support/ |
D | Support_TimeZone.java | 31 int rawOffset; field in Support_TimeZone 35 public Support_TimeZone(int rawOffset, boolean useDaylightTime) { in Support_TimeZone() argument 36 this.rawOffset = rawOffset; in Support_TimeZone() 42 return rawOffset; in getRawOffset() 80 rawOffset = p1; in setRawOffset()
|
/libcore/ojluni/src/main/java/java/util/ |
D | SimpleTimeZone.java | 158 public SimpleTimeZone(int rawOffset, String ID) in SimpleTimeZone() argument 160 this.rawOffset = rawOffset; in SimpleTimeZone() 214 public SimpleTimeZone(int rawOffset, String ID, in SimpleTimeZone() argument 218 this(rawOffset, ID, in SimpleTimeZone() 272 public SimpleTimeZone(int rawOffset, String ID, in SimpleTimeZone() argument 277 this(rawOffset, ID, in SimpleTimeZone() 328 public SimpleTimeZone(int rawOffset, String ID, in SimpleTimeZone() argument 336 this.rawOffset = rawOffset; in SimpleTimeZone() 546 int offset = rawOffset; in getOffsets() 562 cal.getCalendarDate(date + rawOffset, cdate); in getOffsets() [all …]
|
D | TimeZone.java | 668 public static synchronized String[] getAvailableIDs(int rawOffset) { in getAvailableIDs() argument 669 return ZoneInfoDb.getInstance().getAvailableIDs(rawOffset); in getAvailableIDs()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | TimeZoneTest.java | 225 int rawOffset = tz.getRawOffset(); in test_getAvailableIDs_I_16947622() local 226 assertEquals(-8 * 60 * 60 * 1000, rawOffset); in test_getAvailableIDs_I_16947622() 227 List<String> ids = Arrays.asList(TimeZone.getAvailableIDs(rawOffset)); in test_getAvailableIDs_I_16947622()
|