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

123456

/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/chromium_org/third_party/icu/source/i18n/unicode/
H A Dvtzone.h415 BasicTimeZone *tz; member in class:VTimeZone
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ditformat.cpp83 TimeZone *tz = TimeZone::createTimeZone("PST"); local
84 TimeZone::setDefault(*tz);
85 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;
/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.cpp85 TimeZone *tz = TimeZone::createTimeZone("America/Los_Angeles"); local
86 TimeZone::setDefault(*tz);
87 delete tz;
H A Dcaltztst.cpp161 const TimeZone& tz)
171 format->setTimeZone(tz);
160 dateToString(UDate d, UnicodeString& str, const TimeZone& tz) argument
/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/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);
H A DDOMMatrixReadOnly.cpp25 DOMMatrix* DOMMatrixReadOnly::translate(double tx, double ty, double tz) argument
27 return DOMMatrix::create(this)->translateSelf(tx, ty, tz);
/external/chromium_org/third_party/icu/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/chromium_org/third_party/icu/source/test/perf/normperf/
H A Ddtfmtrtperf.h163 TimeZone *tz = TimeZone::createTimeZone(*tzid); local
170 sdf->setTimeZone(*tz);
194 delete tz;
/external/chromium_org/third_party/libevent/
H A Devutil.c209 evutil_gettimeofday(struct timeval *tv, struct timezone *tz) argument
/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/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/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/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DTransformBuilder.cpp184 double tz = 0; local
186 tz = firstValue->computeLength<double>(conversionData);
194 tz = thirdValue->computeLength<double>(conversionData);
203 operations.operations().append(TranslateTransformOperation::create(tx, ty, tz, getTransformOperationType(transformValue->operationType())));
/external/chromium_org/third_party/icu/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/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/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/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/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...]

Completed in 2579 milliseconds

123456