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

  /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...]
TimeZonePickerDialog.java 44 void onTimeZoneSet(TimeZoneInfo tzi);
101 public void onTimeZoneSet(TimeZoneInfo tzi) {
103 mTimeZoneSetListener.onTimeZoneSet(tzi);
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();
517 for (TimeZoneInfo tzi : mTimeZones) {
518 if (tzi.hasSameRules(timeZoneInfo)) {
519 if (tzi.mCountry == null)
    [all...]
TimeZoneInfo.java 220 public boolean hasSameRules(TimeZoneInfo tzi) {
221 // this.mTz.hasSameRules(tzi.mTz)
223 return this.mRawoffset == tzi.mRawoffset
224 && Arrays.equals(this.mTransitions, tzi.mTransitions);
TimeZonePickerView.java 52 void onTimeZoneSet(TimeZoneInfo tzi);
  /external/chromium_org/third_party/icu/source/test/intltest/
windttst.cpp 77 TIME_ZONE_INFORMATION tzi; local
80 if (! uprv_getWindowsTimeZoneInfo(&tzi, zoneID.getBuffer(), zoneID.length())) {
87 if (found = uprv_getWindowsTimeZoneInfo(&tzi, equiv.getBuffer(), equiv.length())) {
93 GetTimeZoneInformation(&tzi);
99 SystemTimeToTzSpecificLocalTime(&tzi, &st, &winNow);
  /external/icu4c/test/intltest/
windttst.cpp 77 TIME_ZONE_INFORMATION tzi; local
80 if (! uprv_getWindowsTimeZoneInfo(&tzi, zoneID.getBuffer(), zoneID.length())) {
87 if (found = uprv_getWindowsTimeZoneInfo(&tzi, equiv.getBuffer(), equiv.length())) {
93 GetTimeZoneInformation(&tzi);
99 SystemTimeToTzSpecificLocalTime(&tzi, &st, &winNow);
  /external/chromium_org/third_party/icu/source/i18n/
windtfmt.cpp 151 TIME_ZONE_INFORMATION tzi = *fTZI; local
156 setTimeZoneInfo(&tzi, tz);
165 SystemTimeToTzSpecificLocalTime(&tzi, &st_gmt, &st_local);
285 UnicodeString Win32DateFormat::setTimeZoneInfo(TIME_ZONE_INFORMATION *tzi, const TimeZone &zone) const
295 if (! uprv_getWindowsTimeZoneInfo(tzi, icuid.getBuffer(), icuid.length())) {
302 if (found = uprv_getWindowsTimeZoneInfo(tzi, equiv.getBuffer(), equiv.length())) {
308 GetTimeZoneInformation(tzi);
windtfmt.h 127 UnicodeString setTimeZoneInfo(TIME_ZONE_INFORMATION *tzi, const TimeZone &zone) const;
  /external/icu4c/i18n/
windtfmt.cpp 151 TIME_ZONE_INFORMATION tzi = *fTZI; local
156 setTimeZoneInfo(&tzi, tz);
165 SystemTimeToTzSpecificLocalTime(&tzi, &st_gmt, &st_local);
285 UnicodeString Win32DateFormat::setTimeZoneInfo(TIME_ZONE_INFORMATION *tzi, const TimeZone &zone) const
295 if (! uprv_getWindowsTimeZoneInfo(tzi, icuid.getBuffer(), icuid.length())) {
302 if (found = uprv_getWindowsTimeZoneInfo(tzi, equiv.getBuffer(), equiv.length())) {
308 GetTimeZoneInformation(tzi);
windtfmt.h 118 UnicodeString setTimeZoneInfo(TIME_ZONE_INFORMATION *tzi, const TimeZone &zone) const;
  /external/chromium_org/third_party/icu/source/common/
wintz.c 32 /* The layout of the Tzi value in the registry */
40 } TZI;
48 static const char TZI_REGKEY[] = "TZI";
150 static LONG getTZI(const char *winid, TZI *tzi)
152 DWORD cbData = sizeof(TZI);
163 (LPBYTE)tzi,
195 TZI Binary block of data
197 The TZI data is of particular interest. It contains the offset, two
201 careful, but essentially we do a binary comparison against the TZI
    [all...]
  /external/icu4c/common/
wintz.c 33 /* The layout of the Tzi value in the registry */
41 } TZI;
49 static const char TZI_REGKEY[] = "TZI";
151 static LONG getTZI(const char *winid, TZI *tzi)
153 DWORD cbData = sizeof(TZI);
164 (LPBYTE)tzi,
218 TZI Binary block of data
220 The TZI data is of particular interest. It contains the offset, two
224 careful, but essentially we do a binary comparison against the TZI
    [all...]
  /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);
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventView.java 415 public void onTimeZoneSet(TimeZoneInfo tzi) {
416 setTimezone(tzi.mTzId);
    [all...]

Completed in 1370 milliseconds