HomeSort by relevance Sort by last modified time
    Searched defs:ZoneInfo (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/libcore/util/
ZoneInfo.java 25 * Our concrete TimeZone implementation, backed by zoneinfo data.
29 public final class ZoneInfo extends TimeZone {
92 return new ZoneInfo(id, transitions, type, gmtOffsets, isDsts);
95 private ZoneInfo(String name, int[] transitions, byte[] types, int[] gmtOffsets, byte[] isDsts) {
254 if (!(timeZone instanceof ZoneInfo)) {
257 ZoneInfo other = (ZoneInfo) timeZone;
273 if (!(obj instanceof ZoneInfo)) {
276 ZoneInfo other = (ZoneInfo) obj
    [all...]
  /external/icu4c/tools/tzcode/
tz2icu.cpp 125 int32_t type; // index into 'ZoneInfo.types' 0..255
141 int32_t abbr; // index into ZoneInfo.abbrs 0..n-1
158 // with a list of the ZoneTypes. A ZoneInfo object may have a long
162 // zoneinfo file.
163 struct ZoneInfo {
180 ZoneInfo() : finalYear(-1), aliasTo(-1) {}
208 void ZoneInfo::clearAliases() {
213 void ZoneInfo::addAlias(int32_t index) {
218 void ZoneInfo::setAliasTo(int32_t index) {
224 typedef map<string, ZoneInfo> ZoneMap
    [all...]

Completed in 5636 milliseconds