Home | History | Annotate | Download | only in timezone

Lines Matching refs:tzid

1121         String tzid = "MyZone";
1125 stz = new SimpleTimeZone(0, tzid);
1126 if (!tzid.equals(stz.getID())) {
1128 + tzid + ") [2-arg constructor]");
1132 stz = new SimpleTimeZone(0, tzid, 3, -1, 1, 3600000, 9, -1, 1, 3600000);
1133 if (!tzid.equals(stz.getID())) {
1135 + tzid + ") [10-arg constructor]");
1139 stz = new SimpleTimeZone(0, tzid, 3, -1, 1, 3600000, 9, -1, 1, 3600000, 3600000);
1140 if (!tzid.equals(stz.getID())) {
1142 + tzid + ") [11-arg constructor]");
1146 stz = new SimpleTimeZone(0, tzid, 3, -1, 1, 3600000, SimpleTimeZone.WALL_TIME,
1148 if (!tzid.equals(stz.getID())) {
1150 + tzid + ") [13-arg constructor]");