HomeSort by relevance Sort by last modified time
    Searched defs:tzi (Results 1 - 5 of 5) sorted by null

  /external/icu/icu4c/source/test/intltest/
windttst.cpp 81 TIME_ZONE_INFORMATION tzi; local
84 if (! uprv_getWindowsTimeZoneInfo(&tzi, zoneID.getBuffer(), zoneID.length())) {
91 if (found = uprv_getWindowsTimeZoneInfo(&tzi, equiv.getBuffer(), equiv.length())) {
97 GetTimeZoneInformation(&tzi);
103 SystemTimeToTzSpecificLocalTime(&tzi, &st, &winNow);
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneResultAdapter.java 172 for (Integer tzi : tzIds) {
173 mFilteredTimeZoneIndices[mFilteredTimeZoneLength++] = tzi;
283 TimeZoneInfo tzi = mTimeZoneData.get(mFilteredTimeZoneIndices[position]); local
284 v.setTag(VIEW_TAG_TIME_ZONE, tzi);
286 vh.timeZone.setText(tzi.mDisplayName);
288 vh.timeOffset.setText(tzi.getGmtDisplayName(mContext));
290 String location = tzi.mCountry;
310 TimeZoneInfo tzi = (TimeZoneInfo) v.getTag(VIEW_TAG_TIME_ZONE); local
311 if (tzi != null) {
312 mTimeZoneSetListener.onTimeZoneSet(tzi);
    [all...]
TimeZoneData.java 109 for (TimeZoneInfo tzi : mTimeZones) {
110 if (timeZoneId.equals(tzi.mTzId)) {
276 TimeZoneInfo tzi = mTimeZonesById.get(ids[i]); local
277 if (tzi != null) {
278 tzi.mDisplayName = labels[i];
293 private void indexByOffsets(int idx, TimeZoneInfo tzi) {
294 int offsetMillis = tzi.getNowOffsetMillis();
516 for (TimeZoneInfo tzi : mTimeZones) {
517 if (tzi.hasSameRules(timeZoneInfo)) {
518 if (tzi.mCountry == null)
    [all...]
  /external/icu/icu4c/source/i18n/
windtfmt.cpp 227 TIME_ZONE_INFORMATION tzi = *fTZI; local
232 setTimeZoneInfo(&tzi, tz);
241 SystemTimeToTzSpecificLocalTime(&tzi, &st_gmt, &st_local);
371 UnicodeString Win32DateFormat::setTimeZoneInfo(TIME_ZONE_INFORMATION *tzi, const TimeZone &zone) const
381 if (! uprv_getWindowsTimeZoneInfo(tzi, icuid.getBuffer(), icuid.length())) {
388 if (found = uprv_getWindowsTimeZoneInfo(tzi, equiv.getBuffer(), equiv.length())) {
394 GetTimeZoneInformation(tzi);
  /packages/apps/Calendar/src/com/android/calendar/
GeneralPreferences.java 422 public void onTimeZoneSet(TimeZoneInfo tzi) {
428 getActivity(), tzi.mTzId, System.currentTimeMillis(), false);
430 Utils.setTimeZone(getActivity(), tzi.mTzId);

Completed in 526 milliseconds