HomeSort by relevance Sort by last modified time
    Searched defs:tz (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /bionic/libc/unistd/
ftime.c 33 struct timezone tz; local
35 if (gettimeofday (&tv, &tz) < 0)
45 tb->timezone = tz.tz_minuteswest;
46 tb->dstflag = tz.tz_dsttime;
  /hardware/ti/omap3/dspbridge/libbridge/
perfutils.c 41 struct timezone tz; local
42 Result = gettimeofday(tv, &tz);
DSPProcessor_OEM.c 102 struct timezone tz; local
DSPManager.c 300 struct timezone tz; local
343 struct timezone tz; local
DSPProcessor.c 219 struct timezone tz; local
263 struct timezone tz; local
405 struct timezone tz; local
535 struct timezone tz; local
599 struct timezone tz; local
645 struct timezone tz; local
  /external/chromium/third_party/icu/source/test/intltest/
itformat.cpp 74 TimeZone *tz = TimeZone::createTimeZone("PST"); local
75 TimeZone::setDefault(*tz);
76 delete tz;
  /external/icu4c/test/intltest/
itformat.cpp 77 TimeZone *tz = TimeZone::createTimeZone("PST"); local
78 TimeZone::setDefault(*tz);
79 delete tz;
  /libcore/luni/src/test/java/libcore/java/util/
CalendarTest.java 30 TimeZone tz = java.util.TimeZone.getTimeZone("GMT+7"); local
31 cal.setTimeZone(tz);
  /external/chromium/third_party/icu/public/i18n/unicode/
vtzone.h 403 BasicTimeZone *tz; member in class:VTimeZone
  /external/icu4c/i18n/unicode/
vtzone.h 403 BasicTimeZone *tz; member in class:VTimeZone
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
Time.java 48 SimpleTimeZone tz = new SimpleTimeZone(0, "Z"); local
51 dateF.setTimeZone(tz);
  /external/v8/src/
dateparser-inl.h 40 TimeZoneComposer tz; local
58 } else if (tz.IsExpecting(n)) {
59 tz.SetAbsoluteMinute(n);
81 tz.Set(KeywordTable::GetValue(index));
86 } else if (in.IsAsciiSign() && (tz.IsUTC() || !time.IsEmpty())) {
88 tz.SetSign(in.GetAsciiSignValue());
92 tz.SetAbsoluteHour(n);
93 tz.SetAbsoluteMinute(kNone);
95 tz.SetAbsoluteHour(n / 100);
96 tz.SetAbsoluteMinute(n % 100)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/app/activity/
SetTimeZonePermissionsTest.java 55 String tz = mZones[i]; local
57 mAlarm.setTimeZone(tz);
  /frameworks/base/services/jni/
com_android_server_AlarmManagerService.cpp 46 struct timezone tz; local
48 tz.tz_minuteswest = minswest;
49 tz.tz_dsttime = 0;
51 int result = settimeofday(NULL, &tz);
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
DateUtils.java 39 TimeZone tz = TimeZone.getTimeZone("GMT"); local
40 Calendar c = Calendar.getInstance(tz);
  /cts/tests/tests/util/src/android/util/cts/
TimeUtilsTest.java 52 TimeZone tz = TimeZone.getTimeZone(name); local
53 Calendar c = Calendar.getInstance(tz);
81 TimeZone tz = TimeZone.getTimeZone(name); local
82 Calendar c = Calendar.getInstance(tz);
105 TimeZone tz = TimeZone.getTimeZone(name); local
106 Calendar c = Calendar.getInstance(tz);
394 "tz", "Africa/Dar_es_Salaam",
428 TimeZone tz = TimeZone.getTimeZone(name); local
429 Calendar c = Calendar.getInstance(tz);
464 TimeZone tz = TimeZone.getTimeZone(name) local
    [all...]
  /external/chromium/base/
time_posix.cc 46 struct timezone tz = { 0, 0 }; // UTC local
47 if (gettimeofday(&tv, &tz) != 0) {
  /external/icu4c/samples/date/
date.c 46 static void date(const UChar *tz, UDateFormatStyle style, char *format, UErrorCode *status);
64 const UChar *tz = 0; local
84 tz = GMT_ID;
138 date(tz, style, format, &status);
192 date(const UChar *tz,
202 fmt = udat_open(style, style, 0, tz, -1,NULL,0, status);
  /external/chromium/third_party/icu/source/i18n/
wintzimpl.cpp 35 static UBool getSystemTimeInformation(TimeZone *tz, SYSTEMTIME &daylightDate, SYSTEMTIME &standardDate, int32_t &bias, int32_t &daylightBias, int32_t &standardBias) {
38 BasicTimeZone *btz = (BasicTimeZone*)tz; // we should check type
116 TimeZone *tz = TimeZone::createTimeZone(id); local
118 if (tz != NULL) {
124 if (getSystemTimeInformation(tz, daylightDate, standardDate, bias, daylightBias, standardBias)) {
  /external/chromium/third_party/icu/source/test/compat/
tzdate.c 75 const UChar *tz = 0; local
82 fmt = udat_open(style, style, 0, tz, -1,NULL,0, &status);
  /external/icu4c/i18n/
wintzimpl.cpp 36 static UBool getSystemTimeInformation(TimeZone *tz, SYSTEMTIME &daylightDate, SYSTEMTIME &standardDate, int32_t &bias, int32_t &daylightBias, int32_t &standardBias) {
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/icu4c/test/compat/
tzdate.c 75 const UChar *tz = 0; local
82 fmt = udat_open(style, style, 0, tz, -1,NULL,0, &status);
  /external/tremolo/Tremolo/
misc.c 92 static struct timezone tz; local
95 gettimeofday(&tv,&tz);
149 static struct timezone tz; local
155 gettimeofday(&tv,&tz);
  /frameworks/base/core/tests/coretests/src/android/util/
TimeUtilsTest.java 41 TimeZone tz = TimeZone.getTimeZone(name); local
42 Calendar c = Calendar.getInstance(tz);
62 TimeZone tz = TimeZone.getTimeZone(name); local
63 Calendar c = Calendar.getInstance(tz);
78 TimeZone tz = TimeZone.getTimeZone(name); local
79 Calendar c = Calendar.getInstance(tz);
358 "tz", "Africa/Dar_es_Salaam",
392 TimeZone tz = TimeZone.getTimeZone(name); local
393 Calendar c = Calendar.getInstance(tz);
416 TimeZone tz = TimeZone.getTimeZone(name) local
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_SimpleDateFormat.java 48 TimeZone tz = TimeZone.getTimeZone("EST"); local
49 Calendar cal = new GregorianCalendar(tz);
55 format.setTimeZone(tz);
135 TimeZone tz = TimeZone.getTimeZone("GMT-05:00"); local
136 Calendar cal = new GregorianCalendar(tz);
142 format.setTimeZone(tz);

Completed in 1567 milliseconds

1 2 3 4 5