Searched defs:daylightType (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
H A Dputil.c733 int32_t daylightType; /* 1=daylight in June, 2=daylight in December*/ member in struct:OffsetZoneMapping
746 More values could be added to daylightType to increase precision.
812 static const char* remapShortTimeZone(const char *stdID, const char *dstID, int32_t daylightType, int32_t offset) argument
816 fprintf(stderr, "TZ=%s std=%s dst=%s daylight=%d offset=%d\n", getenv("TZ"), stdID, dstID, daylightType, offset);
821 && daylightType == OFFSET_ZONE_MAPPINGS[idx].daylightType
1071 int daylightType;
1078 daylightType = ((decemberSol.tm_isdst > 0) << 1) | (juneSol.tm_isdst > 0);
1079 tzid = remapShortTimeZone(U_TZNAME[0], U_TZNAME[1], daylightType, uprv_timezone());
/external/icu/icu4c/source/common/
H A Dputil.cpp754 int32_t daylightType; /* 0=U_DAYLIGHT_NONE, 1=daylight in June-U_DAYLIGHT_JUNE, 2=daylight in December=U_DAYLIGHT_DECEMBER*/ member in struct:OffsetZoneMapping
769 More values could be added to daylightType to increase precision.
835 static const char* remapShortTimeZone(const char *stdID, const char *dstID, int32_t daylightType, int32_t offset) argument
839 fprintf(stderr, "TZ=%s std=%s dst=%s daylight=%d offset=%d\n", getenv("TZ"), stdID, dstID, daylightType, offset);
844 && daylightType == OFFSET_ZONE_MAPPINGS[idx].daylightType
1109 int daylightType;
1117 daylightType = U_DAYLIGHT_DECEMBER;
1119 daylightType = U_DAYLIGHT_JUNE;
1121 daylightType
[all...]

Completed in 60 milliseconds