OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:tzi
(Results
1 - 5
of
5
) sorted by null
/external/icu/icu4c/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);
/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
152
TIME_ZONE_INFORMATION
tzi
= *fTZI;
local
157
setTimeZoneInfo(&
tzi
, tz);
166
SystemTimeToTzSpecificLocalTime(&
tzi
, &st_gmt, &st_local);
286
UnicodeString Win32DateFormat::setTimeZoneInfo(TIME_ZONE_INFORMATION *
tzi
, const TimeZone &zone) const
296
if (! uprv_getWindowsTimeZoneInfo(
tzi
, icuid.getBuffer(), icuid.length())) {
303
if (found = uprv_getWindowsTimeZoneInfo(
tzi
, equiv.getBuffer(), equiv.length())) {
309
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 201 milliseconds