Searched refs:tz (Results 1 - 25 of 190) sorted by relevance

12345678

/external/chromium_org/base/
H A Dos_compat_nacl.cc16 char* tz; local
17 tz = getenv("TZ");
21 if (tz)
22 setenv("TZ", tz, 1);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DTime.java69 private String tz = null; field in class:Time
87 tz = cal.getTimeZone().getID();
153 return tz;
159 * @param tz the time zone.
161 public void setTz(String tz) { argument
162 this.tz = tz;
189 if (tz != null) {
190 buf.append("<tz>").append(tz)
[all...]
/external/qemu/android/utils/
H A Dtimezone.c45 check_timezone_is_zoneinfo(const char* tz) argument
49 if (tz == NULL)
53 slash1 = strchr( tz, '/' );
89 const char* tz = get_zoneinfo_timezone(); local
91 if (tz == NULL || !check_timezone_is_zoneinfo(tz))
94 return bufprint(p, end, "%s", tz);
110 const char* tz = getenv("TZ"); local
114 if (tz == NULL) {
129 tz
296 const char* tz = getenv( "TZ" ); local
[all...]
/external/chromium_org/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/chromium_org/third_party/icu/source/tools/tzcode/
H A Dicuzdump.cpp115 void setTimeZone(TimeZone* tz) { argument
116 timezone = tz;
239 TimeZone* tz = NULL; local
244 tz = TimeZone::createTimeZone(*zid);
250 tz = TimeZone::createTimeZone((const UnicodeString&)zids[idx]);
253 tz = TimeZone::createDefault();
258 return tz;
375 TimeZone* tz = zit->next(); local
376 if (tz == NULL) {
379 dumper.setTimeZone(tz);
406 TimeZone* tz = zit->next(); local
[all...]
/external/icu/icu4c/source/tools/tzcode/
H A Dicuzdump.cpp115 void setTimeZone(TimeZone* tz) { argument
116 timezone = tz;
239 TimeZone* tz = NULL; local
244 tz = TimeZone::createTimeZone(*zid);
250 tz = TimeZone::createTimeZone((const UnicodeString&)zids[idx]);
253 tz = TimeZone::createDefault();
258 return tz;
375 TimeZone* tz = zit->next(); local
376 if (tz == NULL) {
379 dumper.setTimeZone(tz);
406 TimeZone* tz = zit->next(); local
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtzregts.h53 UDate findTransitionBinary(const SimpleTimeZone& tz, UDate min, UDate max);
54 UDate findTransitionStepwise(const SimpleTimeZone& tz, UDate min, UDate max);
H A Dtztest.cpp239 TimeZoneTest::findTransition(const TimeZone& tz, argument
243 UBool startsInDST = tz.inDaylightTime(min, ec);
245 if (tz.inDaylightTime(max, ec) == startsInDST) {
246 logln("Error: " + tz.getID(id) + ".inDaylightTime(" + dateToString(min) + ") = " + (startsInDST?"TRUE":"FALSE") +
253 if (tz.inDaylightTime(mid, ec) == startsInDST) {
262 logln(tz.getID(id) + " Before: " + min/1000 + " = " +
263 dateToString(min,s,tz));
264 logln(tz.getID(id) + " After: " + max/1000 + " = " +
265 dateToString(max,s,tz));
269 TimeZoneTest::testUsingBinarySearch(const TimeZone& tz, argument
315 TimeZone* tz = TimeZone::createTimeZone("PRT"); local
505 TimeZone *tz = TimeZone::createTimeZone("PST"); local
699 TimeZone *tz = TimeZone::createTimeZone(*id1); local
907 TimeZone *tz = TimeZone::createTimeZone(itsID); local
1552 SimpleTimeZone *tz = new SimpleTimeZone(-5 * U_MILLIS_PER_HOUR, "dstSavingsTest", local
1795 TimeZone *tz = TimeZone::createTimeZone(id); local
1916 TimeZone *tz; local
[all...]
H A Dtzbdtest.cpp116 TimeZoneBoundaryTest::findDaylightBoundaryUsingTimeZone(UDate d, UBool startsInDST, UDate expectedBoundary, TimeZone* tz) argument
122 if (tz->inDaylightTime(d, status) != startsInDST) {
123 dataerrln("FAIL: " + tz->getID(str) + " inDaylightTime(" + dateToString(d) + ") != " + (startsInDST ? "true" : "false"));
127 if (tz->inDaylightTime(max, status) == startsInDST) {
128 dataerrln("FAIL: " + tz->getID(str) + " inDaylightTime(" + dateToString(max) + ") != " + (startsInDST ? "false" : "true"));
134 UBool isIn = tz->inDaylightTime(mid, status);
143 logln(tz->getID(str) + " Before: " + showDate(min));
144 logln(tz->getID(str) + " After: " + showDate(max));
337 TimeZone *tz; local
338 TimeZone::setDefault(*(tz
382 testUsingBinarySearch(SimpleTimeZone* tz, UDate d, UDate expectedBoundary) argument
425 SimpleTimeZone *tz; local
[all...]
H A Dtzbdtest.h42 virtual void findDaylightBoundaryUsingTimeZone(UDate d, UBool startsInDST, UDate expectedBoundary, TimeZone* tz);
65 virtual void testUsingBinarySearch(SimpleTimeZone* tz, UDate d, UDate expectedBoundary);
H A Dtztest.h51 void findTransition(const TimeZone& tz,
57 void testUsingBinarySearch(const TimeZone& tz,
/external/icu/icu4c/source/test/intltest/
H A Dtzregts.h53 UDate findTransitionBinary(const SimpleTimeZone& tz, UDate min, UDate max);
54 UDate findTransitionStepwise(const SimpleTimeZone& tz, UDate min, UDate max);
H A Dtztest.cpp230 TimeZoneTest::findTransition(const TimeZone& tz, argument
234 UBool startsInDST = tz.inDaylightTime(min, ec);
236 if (tz.inDaylightTime(max, ec) == startsInDST) {
237 logln("Error: " + tz.getID(id) + ".inDaylightTime(" + dateToString(min) + ") = " + (startsInDST?"TRUE":"FALSE") +
244 if (tz.inDaylightTime(mid, ec) == startsInDST) {
253 logln(tz.getID(id) + " Before: " + min/1000 + " = " +
254 dateToString(min,s,tz));
255 logln(tz.getID(id) + " After: " + max/1000 + " = " +
256 dateToString(max,s,tz));
260 TimeZoneTest::testUsingBinarySearch(const TimeZone& tz, argument
306 TimeZone* tz = TimeZone::createTimeZone("PRT"); local
496 TimeZone *tz = TimeZone::createTimeZone("PST"); local
690 TimeZone *tz = TimeZone::createTimeZone(*id1); local
898 TimeZone *tz = TimeZone::createTimeZone(itsID); local
1543 SimpleTimeZone *tz = new SimpleTimeZone(-5 * U_MILLIS_PER_HOUR, "dstSavingsTest", local
1786 TimeZone *tz = TimeZone::createTimeZone(id); local
1907 TimeZone *tz; local
[all...]
H A Dtzbdtest.cpp116 TimeZoneBoundaryTest::findDaylightBoundaryUsingTimeZone(UDate d, UBool startsInDST, UDate expectedBoundary, TimeZone* tz) argument
122 if (tz->inDaylightTime(d, status) != startsInDST) {
123 dataerrln("FAIL: " + tz->getID(str) + " inDaylightTime(" + dateToString(d) + ") != " + (startsInDST ? "true" : "false"));
127 if (tz->inDaylightTime(max, status) == startsInDST) {
128 dataerrln("FAIL: " + tz->getID(str) + " inDaylightTime(" + dateToString(max) + ") != " + (startsInDST ? "false" : "true"));
134 UBool isIn = tz->inDaylightTime(mid, status);
143 logln(tz->getID(str) + " Before: " + showDate(min));
144 logln(tz->getID(str) + " After: " + showDate(max));
337 TimeZone *tz; local
338 TimeZone::setDefault(*(tz
382 testUsingBinarySearch(SimpleTimeZone* tz, UDate d, UDate expectedBoundary) argument
425 SimpleTimeZone *tz; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMMatrix.cpp52 DOMMatrix* DOMMatrix::translateSelf(double tx, double ty, double tz) argument
54 if (!tx && !ty && !tz)
57 if (tz)
63 m_matrix.translate3d(tx, ty, tz);
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DTranslateTransformOperation.h41 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, double tz, OperationType type) argument
43 return adoptRef(new TranslateTransformOperation(tx, ty, tz, type));
78 TranslateTransformOperation(const Length& tx, const Length& ty, double tz, OperationType type) argument
81 , m_z(tz)
/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/chromium_org/third_party/icu/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/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/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/icu/source/i18n/
H A Dzonemeta.h49 static const UChar* U_EXPORT2 getCanonicalCLDRID(const TimeZone& tz);
76 * tz database. This method is useful when you maintain persistent zone IDs without duplication.
96 * @param tz the time zone
99 static const UChar* U_EXPORT2 getShortID(const TimeZone& tz);
104 * @param tz the time zone ID
/external/chromium_org/third_party/webrtc/modules/audio_device/
H A Daudio_device_utility.cc96 struct timezone tz;
99 gettimeofday(&tv, &tz);
/external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
H A Dssrc_database.cc92 struct timezone tz;
93 gettimeofday(&tv, &tz);
/external/icu/icu4c/source/i18n/
H A Dzonemeta.h49 static const UChar* U_EXPORT2 getCanonicalCLDRID(const TimeZone& tz);
76 * tz database. This method is useful when you maintain persistent zone IDs without duplication.
96 * @param tz the time zone
99 static const UChar* U_EXPORT2 getShortID(const TimeZone& tz);
104 * @param tz the time zone ID

Completed in 1752 milliseconds

12345678