HomeSort by relevance Sort by last modified time
    Searched refs:tzi (Results 1 - 16 of 16) 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 46 void onTimeZoneSet(TimeZoneInfo tzi);
103 public void onTimeZoneSet(TimeZoneInfo tzi) {
105 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();
516 for (TimeZoneInfo tzi : mTimeZones) {
517 if (tzi.hasSameRules(timeZoneInfo)) {
518 if (tzi.mCountry == null)
    [all...]
TimeZoneInfo.java 189 public boolean hasSameRules(TimeZoneInfo tzi) {
190 return this.mTz.hasSameRules(tzi.mTz);
TimeZonePickerView.java 52 void onTimeZoneSet(TimeZoneInfo tzi);
  /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);
  /external/icu/icu4c/source/i18n/
windtfmt.h 120 UnicodeString setTimeZoneInfo(TIME_ZONE_INFORMATION *tzi, const TimeZone &zone) const;
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);
  /external/python/cpython3/Tools/tz/
zdump.py 80 tzi = TZInfo.fromfile(fileobj)
81 tzi.dump(sys.stdout)
  /external/icu/icu4c/source/common/
wintz.cpp 39 /* The layout of the Tzi value in the registry */
47 } TZI;
54 static const char TZI_REGKEY[] = "TZI";
80 static LONG getTZI(const char *winid, TZI *tzi)
82 DWORD cbData = sizeof(TZI);
94 (LPBYTE)tzi,
171 TZI Binary block of data
173 The TZI data is of particular interest. It contains the offset, two
177 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...]
  /prebuilts/go/darwin-x86/src/syscall/
zsyscall_windows.go 528 func GetTimeZoneInformation(tzi *Timezoneinformation) (rc uint32, err error) {
529 r0, _, e1 := Syscall(procGetTimeZoneInformation.Addr(), 1, uintptr(unsafe.Pointer(tzi)), 0, 0)
    [all...]
syscall_windows.go 165 //sys GetTimeZoneInformation(tzi *Timezoneinformation) (rc uint32, err error) [failretval==0xffffffff]
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
zsyscall_windows.go 528 func GetTimeZoneInformation(tzi *Timezoneinformation) (rc uint32, err error) {
529 r0, _, e1 := Syscall(procGetTimeZoneInformation.Addr(), 1, uintptr(unsafe.Pointer(tzi)), 0, 0)
    [all...]
syscall_windows.go 165 //sys GetTimeZoneInformation(tzi *Timezoneinformation) (rc uint32, err error) [failretval==0xffffffff]
    [all...]

Completed in 1297 milliseconds