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

12345

/external/icu/icu4c/source/i18n/unicode/
H A Dvtzone.h415 BasicTimeZone *tz; member in class:VTimeZone
/external/icu/icu4c/source/test/intltest/
H A Ditformat.cpp89 TimeZone *tz = TimeZone::createTimeZone("America/Los_Angeles"); local
90 TimeZone::setDefault(*tz);
91 delete tz;
H A Dcaltztst.cpp161 const TimeZone& tz)
171 format->setTimeZone(tz);
160 dateToString(UDate d, UnicodeString& str, const TimeZone& tz) argument
H A Dwindttst.cpp76 const TimeZone *tz = TimeZone::createDefault(); local
79 tz->getID(zoneID);
191 delete tz;
H A Dastrotst.cpp214 // TimeZone *tz = TimeZone::createTimeZone("America/Los_Angeles");
265 // TimeZone tz = TimeZone.getTimeZone("America/Montreal");
266 TimeZone *tz = new SimpleTimeZone(-18000000 + 3600000, "Montreal(FIXED)"); local
268 GregorianCalendar *cal = new GregorianCalendar(tz->clone(), Locale::getUS(), status);
269 GregorianCalendar *cal2 = new GregorianCalendar(tz->clone(), Locale::getUS(), status);
283 df_t->adoptTimeZone(tz->clone());
284 df_d->adoptTimeZone(tz->clone());
285 df_dt->adoptTimeZone(tz->clone());
359 delete tz;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
H A DDateFormatter.java46 * @param tz the new time zone
49 DateFormatter withTimeZone(TimeZone tz); argument
H A DDurationFormatter.java38 * @param tz the time zone
72 * @param tz the time zone in which to compute durations.
75 DurationFormatter withTimeZone(TimeZone tz); argument
H A DPeriodBuilder.java52 PeriodBuilder withTimeZone(TimeZone tz); argument
H A DBasicDurationFormatter.java86 public DurationFormatter withTimeZone(TimeZone tz) { argument
87 if (!tz.equals(timeZone)) {
88 PeriodBuilder newBuilder = builder.withTimeZone(tz);
91 : fallback.withTimeZone(tz);
94 localeName, tz);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
H A DYMDDateFormatter.java92 public DateFormatter withTimeZone(TimeZone tz) { argument
93 if (!tz.equals(timeZone)) {
94 return new YMDDateFormatter(requestedFields, localeName, tz);
/external/toybox/toys/posix/
H A Ddate.c98 *tz = 0; local
103 if (CFG_TOYBOX_FREE) tz = getenv("TZ");
143 char *tz = CFG_TOYBOX_FREE ? getenv("TZ") : 0; local
150 if (tz) setenv("TZ", tz, 1);
162 if (tz) setenv("TZ", tz, 1);
/external/icu/icu4c/source/test/compat/
H A Dtzdate.c75 const UChar *tz = 0; local
82 fmt = udat_open(style, style, 0, tz, -1,NULL,0, &status);
/external/icu/icu4c/source/test/perf/normperf/
H A Ddtfmtrtperf.h163 TimeZone *tz = TimeZone::createTimeZone(*tzid); local
170 sdf->setTimeZone(*tz);
194 delete tz;
/external/tremolo/Tremolo/
H A Dmisc.c92 static struct timezone tz; local
95 gettimeofday(&tv,&tz);
149 static struct timezone tz; local
155 gettimeofday(&tv,&tz);
/external/icu/icu4c/source/i18n/
H A Dwintzimpl.cpp36 static UBool getSystemTimeInformation(TimeZone *tz, SYSTEMTIME &daylightDate, SYSTEMTIME &standardDate, int32_t &bias, int32_t &daylightBias, int32_t &standardBias) { argument
39 BasicTimeZone *btz = (BasicTimeZone*)tz; // we should check type
119 TimeZone *tz = TimeZone::createTimeZone(id); local
121 if (tz != NULL) {
128 if (getSystemTimeInformation(tz, daylightDate, standardDate, bias, daylightBias, standardBias)) {
/external/icu/icu4c/source/samples/date/
H A Ddate.c47 static void date(UDate when, const UChar *tz, UDateFormatStyle style, const char *format, UErrorCode *status);
48 static UDate getWhen(const char *millis, const char *seconds, const char *format, UDateFormatStyle style, const char *parse, const UChar *tz, UErrorCode *status);
69 const UChar *tz = 0; local
92 tz = GMT_ID;
161 when = getWhen(millis, seconds, format, style, parse, tz, &status);
167 date(when, tz, style, format, &status);
241 const UChar *tz,
263 fmt = udat_open(style, style, 0, tz, -1,NULL,0, status);
292 UDateFormatStyle style, const char *parse, const UChar *tz, UErrorCode *status) {
318 fmt = udat_open(style, style, 0, tz,
240 date(UDate when, const UChar *tz, UDateFormatStyle style, const char *format, UErrorCode *status ) argument
291 getWhen(const char *millis, const char *seconds, const char *format, UDateFormatStyle style, const char *parse, const UChar *tz, UErrorCode *status) argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DTimeZoneAdapter.java45 public static java.util.TimeZone wrap(com.ibm.icu.util.TimeZone tz) { argument
46 return new TimeZoneAdapter(tz);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DBasicTimeZone.java71 * @param tz The instance of <code>TimeZone</code>
76 * time range. When tz is not a <code>BasicTimeZone</code>, this method
81 public boolean hasEquivalentTransitions(TimeZone tz, long start, long end) { argument
82 return hasEquivalentTransitions(tz, start, end, false);
91 * @param tz The instance of <code>TimeZone</code>
101 * time range. When tz is not a <code>BasicTimeZone</code>, this method
106 public boolean hasEquivalentTransitions(TimeZone tz, long start, long end, argument
108 if (this == tz) {
112 if (!(tz instanceof BasicTimeZone)) {
121 tz
[all...]
/external/jetty/src/java/org/eclipse/jetty/util/
H A DDateCache.java110 * @param tz TimeZone
112 public synchronized void setTimeZone(TimeZone tz) argument
114 setTzFormatString(tz);
130 _tzFormat.setTimeZone(tz);
131 _minFormat.setTimeZone(tz);
153 private synchronized void setTzFormatString(final TimeZone tz )
160 int tzOffset = tz.getRawOffset();
/external/mesa3d/src/mesa/math/
H A Dm_norm_tmp.h61 GLfloat tx, ty, tz; local
66 tz = ux * m8 + uy * m9 + uz * m10;
69 GLdouble len = tx*tx + ty*ty + tz*tz;
74 out[i][2] = tz * scale;
90 GLfloat tx, ty, tz; local
95 tz = ux * m8 + uy * m9 + uz * m10;
101 out[i][2] = tz * len;
128 GLfloat tx, ty, tz; local
133 tz
155 GLfloat tx, ty, tz; local
[all...]
/external/netperf/
H A Dnetcpu_perfstat.c137 struct timezone tz; local
192 gettimeofday (&time1, &tz);
194 gettimeofday (&time2, &tz);
H A Dnetcpu_pstat.c122 struct timezone tz; local
158 gettimeofday (&time1, &tz);
160 gettimeofday (&time2, &tz);
/external/v8/src/
H A Ddateparser-inl.h20 TimeZoneComposer tz; local
73 DateToken next_unhandled_token = ParseES5DateTime(&scanner, &day, &time, &tz);
100 } else if (tz.IsExpecting(n)) {
101 tz.SetAbsoluteMinute(n);
125 tz.Set(value);
133 } else if (token.IsAsciiSign() && (tz.IsUTC() || !time.IsEmpty())) {
135 tz.SetSign(token.ascii_sign());
144 tz.SetAbsoluteHour(n);
145 tz.SetAbsoluteMinute(kNone);
147 tz
198 ParseES5DateTime( DateStringTokenizer<Char>* scanner, DayComposer* day, TimeComposer* time, TimeZoneComposer* tz) argument
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPDateTime.java88 /** @param tz a time zone to set */
89 void setTimeZone(TimeZone tz); argument
/external/e2fsprogs/debugfs/
H A Dutil.c196 const char *tz; local
200 tz = ss_safe_getenv("TZ");
201 if (!tz)
202 tz = "";
203 do_gmt = !strcmp(tz, "GMT");

Completed in 627 milliseconds

12345