Searched defs:tz (Results 76 - 100 of 102) sorted by relevance

12345

/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc1996 struct timezone tz; local
1998 break_optimization(&tz);
2000 ASSERT_EQ(8U, sizeof(tz));
2003 EXPECT_POISONED(tz.tz_minuteswest);
2004 EXPECT_POISONED(tz.tz_dsttime);
2005 ASSERT_EQ(0, gettimeofday(&tv, &tz));
2008 EXPECT_NOT_POISONED(tz.tz_minuteswest);
2009 EXPECT_NOT_POISONED(tz.tz_dsttime);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc2187 TSAN_INTERCEPTOR(int, gettimeofday, void *tv, void *tz) { argument
2188 SCOPED_TSAN_INTERCEPTOR(gettimeofday, tv, tz);
2190 return REAL(gettimeofday)(tv, tz);
/external/icu/icu4c/source/i18n/
H A Dsmpdtfmt.cpp1658 const TimeZone& tz = cal.getTimeZone(); local
1664 tzFormat()->format(UTZFMT_STYLE_SPECIFIC_SHORT, tz, date, zoneString);
1668 tzFormat()->format(UTZFMT_STYLE_SPECIFIC_LONG, tz, date, zoneString);
1675 tzFormat()->format(UTZFMT_STYLE_ISO_BASIC_LOCAL_FULL, tz, date, zoneString);
1678 tzFormat()->format(UTZFMT_STYLE_ISO_EXTENDED_FULL, tz, date, zoneString);
1681 tzFormat()->format(UTZFMT_STYLE_LOCALIZED_GMT, tz, date, zoneString);
1687 tzFormat()->format(UTZFMT_STYLE_GENERIC_SHORT, tz, date, zoneString);
1691 tzFormat()->format(UTZFMT_STYLE_GENERIC_LONG, tz, date, zoneString);
1698 tzFormat()->format(UTZFMT_STYLE_ZONE_ID_SHORT, tz, date, zoneString);
1701 tzFormat()->format(UTZFMT_STYLE_ZONE_ID, tz, dat
2178 const TimeZone & tz = cal.getTimeZone(); local
3127 TimeZone *tz = tzFormat()->parse(style, text, pos, tzTimeType); local
3138 TimeZone *tz = tzFormat()->parse(style, text, pos, tzTimeType); local
3148 TimeZone *tz = tzFormat()->parse(style, text, pos, tzTimeType); local
3172 TimeZone *tz = tzFormat()->parse(style, text, pos, tzTimeType); local
3182 TimeZone *tz = tzFormat()->parse(style, text, pos, tzTimeType); local
3209 TimeZone *tz = tzFormat()->parse(style, text, pos, tzTimeType); local
3236 TimeZone *tz = tzFormat()->parse(style, text, pos, tzTimeType); local
[all...]
H A Dcalendar.cpp521 fprintf(stderr, "Cloning a %s calendar with tz=%ld\n", ((Calendar*)instance)->getType(), ((Calendar*)instance)->get(UCAL_ZONE_OFFSET, status2));
543 fprintf(stderr, "New default calendar has tz=%d\n", ((Calendar*)nc)->get(UCAL_ZONE_OFFSET, status2));
3143 const TimeZone& tz = getTimeZone(); local
3145 tz.getOffset(wall, TRUE, rawOffset, dstOffset, ec);
3153 // Note: The maximum historic negative zone transition is -3 hours in the tz database.
3156 tz.getOffset(tgmt - 6*60*60*1000, FALSE, tmpRaw, tmpDst, ec);
3165 tz.getOffset(wall + offsetDelta, TRUE, rawOffset, dstOffset, ec);
3175 tz.getOffset(tgmt, FALSE, rawOffset, dstOffset, ec);
/external/icu/icu4c/source/test/intltest/
H A Dcalregts.cpp260 TimeZone* tz =TimeZone::createTimeZone("Asia/Riyadh87"); local
262 GregorianCalendar *cl = new GregorianCalendar(tz, status);
265 delete tz;
1744 TimeZone *tz = TimeZone::createTimeZone("PST"); local
1745 //TimeZone::adoptDefault(tz);
1746 TimeZone::setDefault(*tz);
1748 GregorianCalendar *cal = new GregorianCalendar(tz, status);
1787 //delete tz;
2646 StringEnumeration *tz = TimeZone::createEnumeration(); local
2647 if (tz
[all...]
H A Ddtfmttst.cpp235 TimeZone *tz = new SimpleTimeZone(7,""); local
333 delete tz;
1324 const LocalPointer<const TimeZone> tz(TimeZone::createTimeZone("CET"));
1337 dfArab->setTimeZone(*tz);
1338 dfLatn->setTimeZone(*tz);
3377 TimeZone *tz = TimeZone::createTimeZone(info[1]); local
3387 cal->adoptTimeZone(tz);
3402 TimeZone *tz = TimeZone::createTimeZone("Europe/Paris"); local
3406 Calendar::createInstance(*tz, Locale("und@calendar=gregorian"), status),
3407 Calendar::createInstance(*tz, Local
3725 TimeZone *tz = TimeZone::createTimeZone("Asia/Shanghai"); local
[all...]
/external/vixl/src/vixl/a64/
H A Dsimulator-a64.cc2963 int tz = CountTrailingZeros(imm5, 32); local
2964 int reg_index = imm5 >> (tz + 1);
2968 int rn_index = imm4 >> tz;
3672 int tz = CountTrailingZeros(imm5, 32); local
3673 int rn_index = imm5 >> (tz + 1);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCalendar.java1752 private static Calendar getInstanceInternal(TimeZone tz, ULocale locale) { argument
1756 if (tz == null) {
1757 tz = TimeZone.getDefault();
1761 cal.setTimeZone(tz);
5481 // likely +1 hour shift. However, there is an example jumped +24 hour in the tz database.
5493 * @param tz The time zone.
5498 private static Long getPreviousZoneTransitionTime(TimeZone tz, long base, long duration) { argument
5503 int offsetU = tz.getOffset(upper);
5504 int offsetL = tz.getOffset(lower);
5508 return findPreviousZoneTransitionTime(tz, offset
5530 findPreviousZoneTransitionTime(TimeZone tz, int upperOffset, long upper, long lower) argument
[all...]
/external/netperf/
H A Dnetlib.c206 struct timezone tz; variable in typeref:struct:timezone
3027 &tz);
3053 &tz);
/external/valgrind/perf/
H A Dtest_input_for_tinycc.c2475 if ((nextHi[0]-nextLo[0]) < (nextHi[1]-nextLo[1])) { Int32 tz; tz = nextLo[0]; nextLo[0] = nextLo[1]; nextLo[1] = tz; tz = nextHi[0]; nextHi[0] = nextHi[1]; nextHi[1] = tz; tz = nextD [0]; nextD [0] = nextD [1]; nextD [1] = tz; }; local
2476 if ((nextHi[1]-nextLo[1]) < (nextHi[2]-nextLo[2])) { Int32 tz; tz = nextLo[1]; nextLo[1] = nextLo[2]; nextLo[2] = tz; t local
2477 if ((nextHi[0]-nextLo[0]) < (nextHi[1]-nextLo[1])) { Int32 tz; tz = nextLo[0]; nextLo[0] = nextLo[1]; nextLo[1] = tz; tz = nextHi[0]; nextHi[0] = nextHi[1]; nextHi[1] = tz; tz = nextD [0]; nextD [0] = nextD [1]; nextD [1] = tz; }; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.util_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/jetty/lib/
H A Djetty-util-6.1.26.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/mortbay/util/ org/mortbay/util/ajax/ ...
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlogback-classic-0.9.8-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/qos/logback/ ch/qos/logback/classic/ ...
H A Dlog4j-1.3alpha-8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
H A Dlogback-core-0.9.8-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/qos/logback/ ch/qos/logback/core/ ...
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/sqlite/dist/orig/
H A Dsqlite3.c15386 int tz; /* Timezone offset in minutes */ member in struct:DateTime
15391 char validTZ; /* True (1) if tz is valid */
15455 ** of change in p->tz and return 0. If a parser error occurs,
15465 p->tz = 0;
15482 p->tz = sgn*(nMn + nHr*60);
15527 p->validTZ = (p->tz!=0)?1:0;
15563 p->iJD -= p->tz*60000;
15828 x.tz = 0;
[all...]
/external/sqlite/dist/
H A Dsqlite3.c15386 int tz; /* Timezone offset in minutes */ member in struct:DateTime
15391 char validTZ; /* True (1) if tz is valid */
15455 ** of change in p->tz and return 0. If a parser error occurs,
15465 p->tz = 0;
15482 p->tz = sgn*(nMn + nHr*60);
15527 p->validTZ = (p->tz!=0)?1:0;
15563 p->iJD -= p->tz*60000;
15828 x.tz = 0;
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/jarjar/lib/
H A Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...

Completed in 1401 milliseconds

12345