HomeSort by relevance Sort by last modified time
    Searched refs:tz (Results 126 - 150 of 324) sorted by null

1 2 3 4 56 7 8 91011>>

  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleDayPickerFragment.java 165 String tz = Time.getCurrentTimezone(); local
170 mSelectedDay.switchTimezone(tz);
172 mFirstDayOfMonth.timezone = tz;
174 mFirstVisibleDay.timezone = tz;
176 mTempTime.timezone = tz;
SimpleWeekView.java 210 * @param tz The time zone this view should reference times in
212 public void setWeekParams(HashMap<String, Integer> params, String tz) {
217 mTimeZone = tz;
247 Time time = new Time(tz);
277 Time today = new Time(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;
  /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;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rfc822.py 876 data.append('') # Dummy tz
880 [dd, mm, yy, tm, tz] = data
896 yy, tz = tz, yy
916 tz = tz.upper()
917 if tz in _timezones:
918 tzoffset = _timezones[tz]
921 tzoffset = int(tz)
988 tz = date[-1 variable
    [all...]
cookielib.py 123 def offset_from_tz_string(tz):
125 if tz in UTC_ZONES:
128 m = TIMEZONE_RE.search(tz)
137 def _str2time(day, mon, yr, hr, min, sec, tz):
176 t = _timegm((yr, mon, day, hr, min, sec, tz))
180 if tz is None:
181 tz = "UTC"
182 tz = tz.upper()
183 offset = offset_from_tz_string(tz)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rfc822.py 876 data.append('') # Dummy tz
880 [dd, mm, yy, tm, tz] = data
896 yy, tz = tz, yy
916 tz = tz.upper()
917 if tz in _timezones:
918 tzoffset = _timezones[tz]
921 tzoffset = int(tz)
988 tz = date[-1 variable
    [all...]
cookielib.py 123 def offset_from_tz_string(tz):
125 if tz in UTC_ZONES:
128 m = TIMEZONE_RE.search(tz)
137 def _str2time(day, mon, yr, hr, min, sec, tz):
176 t = _timegm((yr, mon, day, hr, min, sec, tz))
180 if tz is None:
181 tz = "UTC"
182 tz = tz.upper()
183 offset = offset_from_tz_string(tz)
    [all...]
  /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/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);
  /frameworks/native/opengl/libagl/
dxt.cpp 139 struct timezone tz; local
141 gettimeofday(&start_t, &tz);
183 gettimeofday(&end_t, &tz);
604 struct timezone tz; local
606 gettimeofday(&start_t, &tz);
628 gettimeofday(&end_t, &tz);
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetService.java 314 String tz = Utils.getTimeZone(mContext, null);
316 start = Utils.convertAlldayLocalToUTC(recycle, start, tz);
317 end = Utils.convertAlldayLocalToUTC(recycle, end, tz);
493 String tz = Utils.getTimeZone(mContext, mTimezoneChanged);
498 mModel = buildAppWidgetModel(mContext, matrixCursor, tz);
513 long triggerTime = calculateUpdateTime(mModel, now, tz);
  /external/jsilver/src/org/clearsilver/jni/
JniHdf.java 263 public void exportDate(String hdfname, String tz, int tt) {
268 TimeZone timeZone = TimeZone.getTimeZone(tz);
271 throw new RuntimeException("Unknown timezone: " + tz);
  /external/netperf/
netcpu_looper.c 507 struct timezone tz;
520 gettimeofday (&time1, &tz);
522 gettimeofday (&time2, &tz);
506 struct timezone tz; local
  /packages/apps/DeskClock/src/com/android/deskclock/
SettingsActivity.java 241 TimeZone tz = TimeZone.getTimeZone(id); local
242 boolean useDaylightTime = tz.useDaylightTime();
243 mOffset = tz.getOffset(mTime);
283 * @return double array of tz ids and tz names
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
TransformBuilder.cpp 184 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())));
  /hardware/ti/omap3/dspbridge/libbridge/
DSPProcessor_OEM.c 102 struct timezone tz; local
  /packages/apps/Calendar/src/com/android/calendar/
GeneralPreferences.java 195 // in the shared_pref if home time zone is disabled. So if home tz is
305 String tz; local
309 tz = mTimeZoneId;
311 tz = CalendarCache.TIMEZONE_TYPE_AUTO;
313 Utils.setTimeZone(activity, tz);
  /external/icu/icu4c/source/i18n/
ucal.cpp 212 const TimeZone& tz = ((Calendar*)cal)->getTimeZone(); local
214 tz.getID(id);
229 const TimeZone& tz = ((Calendar*)cal)->getTimeZone(); local
239 tz.getDisplayName(FALSE, TimeZone::LONG, Locale(locale), id);
243 tz.getDisplayName(FALSE, TimeZone::SHORT, Locale(locale), id);
247 tz.getDisplayName(TRUE, TimeZone::LONG, Locale(locale), id);
251 tz.getDisplayName(TRUE, TimeZone::SHORT, Locale(locale), id);
759 const TimeZone& tz = ((Calendar*)cal)->getTimeZone(); local
760 const BasicTimeZone * btz = dynamic_cast<const BasicTimeZone *>(&tz);
tzfmt.cpp 637 TimeZoneFormat::format(UTimeZoneFormatStyle style, const TimeZone& tz, UDate date,
647 formatGeneric(tz, UTZGNM_LOCATION, date, name);
650 formatGeneric(tz, UTZGNM_LONG, date, name);
653 formatGeneric(tz, UTZGNM_SHORT, date, name);
656 formatSpecific(tz, UTZNM_LONG_STANDARD, UTZNM_LONG_DAYLIGHT, date, name, timeType);
659 formatSpecific(tz, UTZNM_SHORT_STANDARD, UTZNM_SHORT_DAYLIGHT, date, name, timeType);
663 tz.getID(name);
668 const UChar* shortID = ZoneMeta::getShortID(tz);
678 formatExemplarLocation(tz, name);
690 tz.getOffset(date, FALSE, rawOffset, dstOffset, status)
770 const TimeZone* tz = dynamic_cast<const TimeZone*>(formatObj); local
    [all...]
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 347 String tz = "America/Los_Angeles"; local
348 Time local = new Time(tz);
359 Time expected = new Time(tz);
372 expected = new Time(tz);
390 Time expected = new Time(tz);
406 expected = new Time(tz);
537 String tz = Time.TIMEZONE_UTC; local
538 Time t = new Time(tz);
539 assertEquals(tz, t.timezone);
541 Time expected = new Time(tz);
1647 String tz = Time.TIMEZONE_UTC; local
1717 String tz = Time.TIMEZONE_UTC; local
1727 String tz = Time.TIMEZONE_UTC; local
1749 String tz = Time.TIMEZONE_UTC; local
1766 String tz = Time.TIMEZONE_UTC; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL OpenGL Application/atlantis/
atlantis.c 65 struct timezone tz; local
67 gettimeofday(&tk_time, &tz);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL OpenGL Application/atlantis/
atlantis.c 65 struct timezone tz; local
67 gettimeofday(&tk_time, &tz);
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL OpenGL Application/atlantis/
atlantis.c 65 struct timezone tz; local
67 gettimeofday(&tk_time, &tz);
  /frameworks/base/core/java/android/widget/
AnalogClock.java 255 String tz = intent.getStringExtra("time-zone");
256 mCalendar = new Time(TimeZone.getTimeZone(tz).getID());

Completed in 544 milliseconds

1 2 3 4 56 7 8 91011>>