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

  /external/chromium_org/third_party/icu/source/i18n/
wintzimpl.h 32 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length);
wintzimpl.cpp 116 static UBool getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length) {
118 UnicodeString id = UnicodeString(icuid, length);
144 * Given the timezone icuid, fill in zoneInfo by calling auxillary functions that creates a timezone and extract the
148 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length)
150 if (getWindowsTimeZoneInfo(zoneInfo, icuid, length)) {
windtfmt.cpp 292 UnicodeString icuid; local
294 zone.getID(icuid);
295 if (! uprv_getWindowsTimeZoneInfo(tzi, icuid.getBuffer(), icuid.length())) {
297 int32_t ec = TimeZone::countEquivalentIDs(icuid);
300 UnicodeString equiv = TimeZone::getEquivalentID(icuid, z);
  /external/icu4c/i18n/
wintzimpl.h 32 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length);
wintzimpl.cpp 116 static UBool getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length) {
118 UnicodeString id = UnicodeString(icuid, length);
144 * Given the timezone icuid, fill in zoneInfo by calling auxillary functions that creates a timezone and extract the
148 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length)
150 if (getWindowsTimeZoneInfo(zoneInfo, icuid, length)) {
windtfmt.cpp 292 UnicodeString icuid; local
294 zone.getID(icuid);
295 if (! uprv_getWindowsTimeZoneInfo(tzi, icuid.getBuffer(), icuid.length())) {
297 int32_t ec = TimeZone::countEquivalentIDs(icuid);
300 UnicodeString equiv = TimeZone::getEquivalentID(icuid, z);
  /external/chromium_org/third_party/icu/source/common/
wintz.c 229 char* icuid = NULL; local
273 icuid = (char*)uprv_malloc(sizeof(char) * (len + 1));
274 uprv_memset(icuid, 0, len + 1);
275 u_austrncpy(icuid, icuTZ, len);
280 if (icuid != NULL) {
287 return icuid;
  /external/icu4c/common/
wintz.c 252 char* icuid = NULL; local
356 * Copy the timezone ID to icuid to be returned.
360 icuid = (char*)uprv_calloc(len + 1, sizeof(char));
361 if (icuid != NULL) {
362 uprv_strcpy(icuid, tmpid);
368 return icuid;

Completed in 309 milliseconds