/external/strace/tests/ |
H A D | xettimeofday.c | 40 struct timezone tz; member in struct:__anon16589 52 if (syscall(__NR_gettimeofday, &t.tv, &t.tz)) 57 t.tz.tz_minuteswest, t.tz.tz_dsttime); 61 if (!settimeofday(&t.tv, &t.tz)) 67 t.tz.tz_minuteswest, t.tz.tz_dsttime);
|
/external/icu/icu4c/source/i18n/unicode/ |
H A D | vtzone.h | 415 BasicTimeZone *tz; member in class:VTimeZone
|
/external/icu/icu4c/source/test/intltest/ |
H A D | itformat.cpp | 91 TimeZone *tz = TimeZone::createTimeZone("America/Los_Angeles"); local 92 TimeZone::setDefault(*tz); 93 delete tz;
|
H A D | caltztst.cpp | 161 const TimeZone& tz) 171 format->setTimeZone(tz); 160 dateToString(UDate d, UnicodeString& str, const TimeZone& tz) argument
|
H A D | windttst.cpp | 76 const TimeZone *tz = TimeZone::createDefault(); local 79 tz->getID(zoneID); 191 delete tz;
|
/external/strace/ |
H A D | time.c | 38 struct timezone tz; local 40 if (umove_or_printaddr(tcp, addr, &tz)) 44 tz.tz_minuteswest, tz.tz_dsttime);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/ |
H A D | DateFormatter.java | 48 * @param tz the new time zone 51 DateFormatter withTimeZone(TimeZone tz); argument
|
H A D | DurationFormatter.java | 40 * @param tz the time zone 74 * @param tz the time zone in which to compute durations. 77 DurationFormatter withTimeZone(TimeZone tz); argument
|
H A D | PeriodBuilder.java | 54 PeriodBuilder withTimeZone(TimeZone tz); argument
|
H A D | BasicDurationFormatter.java | 87 public DurationFormatter withTimeZone(TimeZone tz) { argument 88 if (!tz.equals(timeZone)) { 89 PeriodBuilder newBuilder = builder.withTimeZone(tz); 92 : fallback.withTimeZone(tz); 95 localeName, tz);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/ |
H A D | YMDDateFormatter.java | 94 public DateFormatter withTimeZone(TimeZone tz) { argument 95 if (!tz.equals(timeZone)) { 96 return new YMDDateFormatter(requestedFields, localeName, tz);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/ |
H A D | DateFormatter.java | 46 * @param tz the new time zone 49 DateFormatter withTimeZone(TimeZone tz); argument
|
H A D | DurationFormatter.java | 38 * @param tz the time zone 72 * @param tz the time zone in which to compute durations. 75 DurationFormatter withTimeZone(TimeZone tz); argument
|
H A D | PeriodBuilder.java | 52 PeriodBuilder withTimeZone(TimeZone tz); argument
|
H A D | BasicDurationFormatter.java | 86 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/libvncserver/compat/msvc/sys/ |
H A D | time.h | 32 static __inline int gettimeofday(struct timeval *tv, struct timezone *tz) argument 52 if (NULL != tz) 59 tz->tz_minuteswest = _timezone / 60; 60 tz->tz_dsttime = _daylight;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/ |
H A D | YMDDateFormatter.java | 92 public DateFormatter withTimeZone(TimeZone tz) { argument 93 if (!tz.equals(timeZone)) { 94 return new YMDDateFormatter(requestedFields, localeName, tz);
|
/external/icu/icu4c/source/test/compat/ |
H A D | tzdate.c | 75 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 D | dtfmtrtperf.h | 163 TimeZone *tz = TimeZone::createTimeZone(*tzid); local 170 sdf->setTimeZone(*tz); 194 delete tz;
|
/external/tremolo/Tremolo/ |
H A D | misc.c | 92 static struct timezone tz; local 95 gettimeofday(&tv,&tz); 149 static struct timezone tz; local 155 gettimeofday(&tv,&tz);
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
H A D | TimeZoneAdapter.java | 46 public static java.util.TimeZone wrap(android.icu.util.TimeZone tz) { argument 47 return new TimeZoneAdapter(tz);
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
H A D | BasicTimeZone.java | 68 * @param tz The instance of <code>TimeZone</code> 73 * time range. When tz is not a <code>BasicTimeZone</code>, this method 76 public boolean hasEquivalentTransitions(TimeZone tz, long start, long end) { argument 77 return hasEquivalentTransitions(tz, start, end, false); 86 * @param tz The instance of <code>TimeZone</code> 96 * time range. When tz is not a <code>BasicTimeZone</code>, this method 99 public boolean hasEquivalentTransitions(TimeZone tz, long start, long end, argument 101 if (this == tz) { 105 if (!(tz instanceof BasicTimeZone)) { 114 tz [all...] |
/external/icu/icu4c/source/i18n/ |
H A D | wintzimpl.cpp | 36 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 D | date.c | 47 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 D | TimeZoneAdapter.java | 45 public static java.util.TimeZone wrap(com.ibm.icu.util.TimeZone tz) { argument 46 return new TimeZoneAdapter(tz);
|