HomeSort by relevance Sort by last modified time
    Searched defs:tz (Results 51 - 75 of 211) sorted by null

1 23 4 5 6 7 8 9

  /hardware/ti/omap3/dspbridge/libbridge/
DSPNode.c 418 struct timezone tz; local
466 struct timezone tz; local
652 struct timezone tz; local
760 struct timeval tz; local
  /libcore/luni/src/test/java/libcore/java/util/
OldTimeZoneTest.java 86 TimeZone tz = TimeZone.getTimeZone("GMT-6"); local
87 assertEquals("GMT-06:00", tz.getDisplayName());
88 tz = TimeZone.getTimeZone("America/Los_Angeles");
89 assertEquals("Pacific Standard Time", tz.getDisplayName());
93 TimeZone tz = TimeZone.getTimeZone("America/Los_Angeles"); local
94 assertEquals("Pacific Standard Time", tz.getDisplayName(Locale.US));
95 assertEquals("heure normale du Pacifique nord-américain", tz.getDisplayName(Locale.FRANCE));
100 TimeZone tz = TimeZone.getTimeZone("America/Los_Angeles"); local
101 assertEquals("PST", tz.getDisplayName(false, TimeZone.SHORT));
102 assertEquals("Pacific Daylight Time", tz.getDisplayName(true, TimeZone.LONG))
108 TimeZone tz = TimeZone.getTimeZone("America\/Los_Angeles"); local
141 TimeZone tz = TimeZone.getTimeZone("GMT-6"); local
163 TimeZone tz = TimeZone.getTimeZone("GMT-6"); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertAdapter.java 115 String tz = Utils.getTimeZone(context, null); local
119 tz = Time.TIMEZONE_UTC;
127 Time time = new Time(tz);
132 if (!allDay && tz != Time.getCurrentTimezone()) {
133 sb.append(" ").append(TimeZone.getTimeZone(tz).getDisplayName(
  /packages/apps/Contacts/src/com/android/contacts/interactions/
CalendarInteractionUtils.java 105 * @param tz The time zone to convert this time to.
107 private static long convertAlldayUtcToLocal(Time recycle, long utcTime, String tz) {
113 recycle.timezone = tz;
117 public static long convertAlldayLocalToUTC(Time recycle, long localTime, String tz) {
121 recycle.timezone = tz;
179 String tz; local
181 tz = Time.TIMEZONE_UTC;
183 tz = Time.getCurrentTimezone();
189 tz).toString();
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneInfo.java 57 public TimeZoneInfo(TimeZone tz, String country) {
58 mTz = tz;
59 mTzId = tz.getID();
61 mRawoffset = tz.getRawOffset();
64 mTransitions = getTransitions(tz, time);
197 private static int[] getTransitions(TimeZone tz, long time)
199 Class<?> zoneInfoClass = tz.getClass();
202 int[] objTransitions = (int[]) mTransitionsField.get(tz);
232 final TimeZone tz = this.mTz; local
236 sb.append(tz.getDisplayName(false /* daylightTime */, TimeZone.LONG))
    [all...]
  /libcore/luni/src/main/java/java/util/
Date.java 705 TimeZone tz = cal.getTimeZone(); local
719 result.append(tz.getDisplayName(tz.inDaylightTime(this), TimeZone.SHORT));
  /bionic/libc/bionic/
ndk_cruft.cpp 282 struct timezone tz; local
284 if (gettimeofday(&tv, &tz) < 0)
295 tb->timezone = tz.tz_minuteswest;
296 tb->dstflag = tz.tz_dsttime;
  /device/lge/mako/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_display.c 175 struct timezone tz; local
237 gettimeofday(&td1, &tz);
247 gettimeofday(&td2, &tz);
273 struct timezone tz; local
311 gettimeofday(&td1, &tz);
318 gettimeofday(&td2, &tz);
  /device/lge/mako/camera/mm-camera-interface/
mm_jpeg_encoder.c 68 struct timezone tz; variable in typeref:struct:timezone
146 gettimeofday(&tdAfter, &tz);
339 gettimeofday(&tdBefore, &tz);
  /device/moto/shamu/camera/QCamera/stack/mm-camera-test/src/
mm_qcamera_display.c 174 struct timezone tz; local
236 gettimeofday(&td1, &tz);
246 gettimeofday(&td2, &tz);
272 struct timezone tz; local
310 gettimeofday(&td1, &tz);
317 gettimeofday(&td2, &tz);
  /external/chromium_org/third_party/icu/source/i18n/
windtfmt.cpp 153 const TimeZone &tz = cal.getTimeZone(); local
156 setTimeZoneInfo(&tzi, tz);
  /external/chromium_org/third_party/icu/source/test/intltest/
astrotst.cpp 216 // TimeZone *tz = TimeZone::createTimeZone("America/Los_Angeles");
267 // TimeZone tz = TimeZone.getTimeZone("America/Montreal");
268 TimeZone *tz = new SimpleTimeZone(-18000000 + 3600000, "Montreal(FIXED)"); local
270 GregorianCalendar *cal = new GregorianCalendar(tz->clone(), Locale::getUS(), status);
271 GregorianCalendar *cal2 = new GregorianCalendar(tz->clone(), Locale::getUS(), status);
285 df_t->adoptTimeZone(tz->clone());
286 df_d->adoptTimeZone(tz->clone());
287 df_dt->adoptTimeZone(tz->clone());
361 delete tz;
dtfmapts.cpp 243 const TimeZone& tz = def->getTimeZone(); local
244 TimeZone *newTz = tz.clone();
dtfmtrtts.cpp 147 TimeZone *tz = TimeZone::createDefault(); local
149 logln("Default TimeZone: " + tz->getID(temp));
150 delete tz;
tzbdtest.cpp 116 TimeZoneBoundaryTest::findDaylightBoundaryUsingTimeZone(UDate d, UBool startsInDST, UDate expectedBoundary, TimeZone* tz)
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 = TimeZone::createTimeZone("PST")))
425 SimpleTimeZone *tz; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_render/test/testAPI/
testAPI.cc 70 struct timezone tz; local
73 gettimeofday(&tv, &tz);
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
clock.cc 224 struct timezone tz; variable in typeref:struct:webrtc::UnixRealTimeClock::timezone
225 tz.tz_minuteswest = 0;
226 tz.tz_dsttime = 0;
227 gettimeofday(&tv, &tz);
  /external/e2fsprogs/debugfs/
util.c 196 const char *tz; local
199 /* The diet libc doesn't respect the TZ environemnt variable */
200 tz = ss_safe_getenv("TZ");
201 if (!tz)
202 tz = "";
203 do_gmt = !strcmp(tz, "GMT");
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 317 int tz = Long.numberOfTrailingZeros(num); local
318 long normalizedNum = num >> tz;
319 shift += tz;
321 int normalizedBits = bits - tz;
  /external/icu/icu4c/source/i18n/
windtfmt.cpp 154 const TimeZone &tz = cal.getTimeZone(); local
157 setTimeZoneInfo(&tzi, tz);
  /external/icu/icu4c/source/test/intltest/
astrotst.cpp 214 // TimeZone *tz = TimeZone::createTimeZone("America/Los_Angeles");
265 // TimeZone tz = TimeZone.getTimeZone("America/Montreal");
266 TimeZone *tz = new SimpleTimeZone(-18000000 + 3600000, "Montreal(FIXED)"); local
268 GregorianCalendar *cal = new GregorianCalendar(tz->clone(), Locale::getUS(), status);
269 GregorianCalendar *cal2 = new GregorianCalendar(tz->clone(), Locale::getUS(), status);
283 df_t->adoptTimeZone(tz->clone());
284 df_d->adoptTimeZone(tz->clone());
285 df_dt->adoptTimeZone(tz->clone());
359 delete tz;
dadrfmt.cpp 188 TimeZone * tz = TimeZone::createTimeZone(zone); local
189 cal->setTimeZone(*tz);
190 format->setTimeZone(*tz);
191 delete tz;
dtfmapts.cpp 243 const TimeZone& tz = def->getTimeZone(); local
244 TimeZone *newTz = tz.clone();
dtfmtrtts.cpp 145 TimeZone *tz = TimeZone::createDefault(); local
147 logln("Default TimeZone: " + tz->getID(temp));
148 delete tz;
tzbdtest.cpp 116 TimeZoneBoundaryTest::findDaylightBoundaryUsingTimeZone(UDate d, UBool startsInDST, UDate expectedBoundary, TimeZone* tz)
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 = TimeZone::createTimeZone("PST")))
425 SimpleTimeZone *tz; local
    [all...]

Completed in 950 milliseconds

1 23 4 5 6 7 8 9