HomeSort by relevance Sort by last modified time
    Searched refs:rawoffset (Results 1 - 6 of 6) sorted by null

  /libcore/ojluni/src/main/java/java/util/
TimeZone.java 239 int rawoffset = getRawOffset(); local
245 offsets[0] = rawoffset;
248 return rawoffset + dstoffset;
660 * @param rawOffset the given time zone GMT offset in milliseconds.
666 public static synchronized String[] getAvailableIDs(int rawOffset) {
667 return ZoneInfoDB.getInstance().getAvailableIDs(rawOffset);
  /external/icu/icu4c/source/tools/tzcode/
tz2icu.cpp 137 int64_t rawoffset; // raw seconds offset from GMT member in struct:ZoneType
149 ZoneType() : rawoffset(-1), dstoffset(-1), abbr(-1) {}
153 return rawoffset == other.rawoffset &&
404 type.rawoffset = readcoded(file);
429 // Initial type's rawoffset is same with the rawoffset after the
431 int64_t rawoffset0 = (info.types.at(info.transitions.at(0).type)).rawoffset;
434 if (info.types.at(i).rawoffset == rawoffset0
1203 int64_t rawoffset; member in struct:SimplifiedZoneType
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TimeZoneTest.java 225 int rawOffset = tz.getRawOffset();
226 assertEquals(-8 * 60 * 60 * 1000, rawOffset);
227 List<String> ids = Arrays.asList(TimeZone.getAvailableIDs(rawOffset));
245 int rawoffset = tz.getRawOffset(); local
246 String[] ids = TimeZone.getAvailableIDs(rawoffset);
  /external/icu/icu4c/source/test/intltest/
tzregts.cpp 419 " RawOffset(" + tzRawOffsetFloat + ")" +
498 // h is in half-hours from GMT; rawoffset is in millis
499 int32_t rawoffset = h * 1800000; local
508 StringEnumeration* ids = TimeZone::createEnumeration(rawoffset);
510 dataerrln("Fail: TimeZone::createEnumeration(rawoffset)");
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneRegressionTest.java 287 " RawOffset(" + tzRawOffsetFloat + ")" +
359 // h is in half-hours from GMT; rawoffset is in millis
360 int rawoffset = h * 1800000; local
367 String[] ids = TimeZone.getAvailableIDs(rawoffset);
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneRegressionTest.java 284 " RawOffset(" + tzRawOffsetFloat + ")" +
356 // h is in half-hours from GMT; rawoffset is in millis
357 int rawoffset = h * 1800000; local
364 String[] ids = TimeZone.getAvailableIDs(rawoffset);
    [all...]

Completed in 163 milliseconds