Searched defs:tz (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DBackEnd.java41 * @param tz Timezone object for each zone
44 abstract int processZoneinfo(Timezone tz); argument
H A DGen.java56 int processZoneinfo(Timezone tz) { argument
60 String zonefile = ZoneInfoFile.getFileName(tz.getName());
88 List<Long> transitions = tz.getTransitions();
90 List<Integer> dstOffsets = tz.getDstOffsets();
91 List<Integer> offsets = tz.getOffsets();
120 List<Integer> gmtoffset = tz.getGmtOffsets();
130 List<RuleRec> stz = tz.getLastRules();
160 dos.writeInt(tz.getRawOffset());
163 if (tz.willGMTOffsetChange()) {
172 dos.writeShort(tz
[all...]
H A DSimple.java75 * @param tz Timezone object for each zone
78 int processZoneinfo(Timezone tz) { argument
79 String zonename = tz.getName();
81 lastRules.put(zonename, tz.getLastRules());
82 lastZoneRecs.put(zonename, tz.getLastZoneRec());
86 int lastKnownOffset = tz.getRawOffset();
H A DGenDoc.java121 int processZoneinfo(Timezone tz) { argument
126 String zonename = tz.getName();
128 List<RuleRec> stz = tz.getLastRules();
134 int lastKnownOffset = tz.getRawOffset();
228 List<ZoneRec> zone = tz.getZones();
229 List<RuleRec> rule = tz.getRules();
/openjdk7/jdk/test/tools/pack200/
H A DTimeStamp.java51 static final TimeZone tz = TimeZone.getDefault(); field in class:TimeStamp
67 TimeZone.setDefault(tz); // reset the timezone
125 TimeZone.setDefault(tz); // always reset
/openjdk7/jdk/test/java/util/TimeZone/
H A DDaylightTimeTest.java43 TimeZone tz = TimeZone.getTimeZone(id);
45 boolean observes = tz.observesDaylightTime();
46 boolean found = findDSTTransition(tz, now);
54 observes = tz.observesDaylightTime();
55 found = findDSTTransition(tz, now);
58 tz.getID(), found, now);
81 private static boolean findDSTTransition(TimeZone tz, long now) { argument
82 GregorianCalendar cal = new GregorianCalendar(tz, Locale.US);
/openjdk7/hotspot/test/compiler/6823354/
H A DTest6823354.java47 tz();
107 static void tz() throws Exception { method in class:Test6823354
/openjdk7/jdk/src/share/classes/java/util/
H A DTimeZone.java69 * TimeZone tz = TimeZone.getTimeZone("America/Los_Angeles");
561 TimeZone tz = ZoneInfo.getTimeZone(ID);
562 if (tz == null) {
563 tz = parseCustomTimeZone(ID);
564 if (tz == null && fallback) {
565 tz = new ZoneInfo(GMT_ID, 0);
568 return tz;
634 TimeZone tz = null;
658 tz = getTimeZone(zoneID, false);
660 if (tz
758 setDefaultInAppContext(TimeZone tz) argument
[all...]
/openjdk7/jdk/src/solaris/native/java/util/
H A DTimeZone_md.c113 char *tz = NULL; local
165 tz = findZoneinfoFile(buf, size, pathname);
166 if (tz != NULL) {
182 tz = getZoneName(pathname);
183 if (tz != NULL) {
184 tz = strdup(tz);
212 return tz;
225 char *tz = NULL; local
247 tz
457 char *tz = NULL; local
553 char *tz = NULL; local
630 char *tz; local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dconnode.cpp913 const TypeLong* tz = this_type; local
918 jlong zlo = tz->_lo;
919 jlong zhi = tz->_hi;
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c141 struct timezone tz; local
144 gettimeofday(&tv, &tz);
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscnvrt.c162 cmsFloat64Number ax, ay, az, bx, by, bz, tx, ty, tz; local
174 tz = BlackPointIn->Z - cmsD50_XYZ()->Z;
178 az = (BlackPointOut->Z - cmsD50_XYZ()->Z) / tz;
182 bz = - cmsD50_XYZ()-> Z * (BlackPointOut->Z - BlackPointIn->Z) / tz;
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp3978 TIME_ZONE_INFORMATION tz; local
3979 DWORD tzid = GetTimeZoneInformation(&tz);
3981 (tzid == TIME_ZONE_ID_DAYLIGHT) ? tz.DaylightBias : tz.StandardBias;
3982 sbuf->st_mtime += (tz.Bias + daylightBias) * 60;

Completed in 85 milliseconds