/external/icu4c/test/intltest/ |
windttst.cpp | 75 UnicodeString zoneID; 79 tz->getID(zoneID); 80 if (! uprv_getWindowsTimeZoneInfo(&tzi, zoneID.getBuffer(), zoneID.length())) { 82 int32_t ec = TimeZone::countEquivalentIDs(zoneID); 85 UnicodeString equiv = TimeZone::getEquivalentID(zoneID, z);
|
tztest.cpp | [all...] |
/external/icu4c/i18n/ |
ucal.cpp | 31 _createTimeZone(const UChar* zoneID, int32_t len, UErrorCode* ec) { 34 // Note that if zoneID is invalid, we get back GMT. This odd 37 int32_t l = (len<0 ? u_strlen(zoneID) : len); 39 zoneStrID.setTo((UBool)(len < 0), zoneID, l); /* temporary read-only alias */ 76 ucal_setDefaultTimeZone(const UChar* zoneID, UErrorCode* ec) { 77 TimeZone* zone = _createTimeZone(zoneID, -1, ec); 84 ucal_getDSTSavings(const UChar* zoneID, UErrorCode* ec) { 86 TimeZone* zone = _createTimeZone(zoneID, -1, ec); 123 ucal_open( const UChar* zoneID, 132 TimeZone* zone = (zoneID==NULL) ? TimeZone::createDefault( [all...] |
windtfmt.cpp | 287 UnicodeString zoneID; 289 zone.getID(zoneID); 291 if (zoneID.compare(fZoneID) != 0) { 313 return zoneID;
|
/external/quake/quake/src/QW/client/ |
zone.c | 26 #define ZONEID 0x1d4a11 33 int id; // should be ZONEID 89 block->id = ZONEID; 107 if (block->id != ZONEID) 108 Sys_Error ("Z_Free: freed a pointer without ZONEID"); 194 new->id = ZONEID; 205 base->id = ZONEID; 208 *(int *)((byte *)base + base->size - 4) = ZONEID;
|
/external/quake/quake/src/WinQuake/ |
zone.cpp | 26 #define ZONEID 0x1d4a11 33 int id; // should be ZONEID 89 block->id = ZONEID; 107 if (block->id != ZONEID) 108 Sys_Error ("Z_Free: freed a pointer without ZONEID"); 194 newm->id = ZONEID; 205 base->id = ZONEID; 208 *(int *)((byte *)base + base->size - 4) = ZONEID;
|
/libcore/luni/src/main/native/ |
libcore_icu_TimeZones.cpp | 133 ScopedJavaUnicodeString zoneId(env, javaZoneId.get()); 134 UnicodeString id(zoneId.unicodeString());
|
/external/icu4c/i18n/unicode/ |
ucal.h | 573 * @param zoneID null-terminated time zone ID 580 ucal_setDefaultTimeZone(const UChar* zoneID, UErrorCode* ec); 587 * @param zoneID null-terminated time zone ID 599 ucal_getDSTSavings(const UChar* zoneID, UErrorCode* ec); 620 * @param zoneID The desired TimeZone ID. If 0, use the default time zone. 621 * @param len The length of zoneID, or -1 if null-terminated. 633 ucal_open(const UChar* zoneID, 683 * @param zoneID The desired TimeZone ID. If 0, use the default time zone. 684 * @param len The length of zoneID, or -1 if null-terminated. 690 const UChar* zoneID, [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/ |
MccTable.java | 215 String zoneId = defaultTimeZoneForMcc(mcc); 216 if (zoneId != null && zoneId.length() > 0) { 221 alarm.setTimeZone(zoneId); 222 Log.d(LOG_TAG, "timezone set to "+zoneId);
|
/external/icu4c/test/cintltst/ |
cintltst.c | 572 UChar zoneID[CTEST_MAX_TIMEZONE_SIZE]; 588 u_uastrncpy(zoneID, optionalTimeZone, CTEST_MAX_TIMEZONE_SIZE-1); 589 zoneID[CTEST_MAX_TIMEZONE_SIZE-1] = 0; 590 ucal_setDefaultTimeZone(zoneID, status);
|
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
CdmaServiceStateTracker.java | [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
GsmServiceStateTracker.java | [all...] |
/bionic/libc/netbsd/net/ |
getnameinfo.c | 474 /* construct <numeric-addr><delim><zoneid> */
|
/packages/apps/Exchange/src/com/android/exchange/utility/ |
CalendarUtilities.java | [all...] |
/external/icu4c/common/ |
putil.c | 947 const char* zoneid = newpath + (sizeof(TZZONEINFO)) - 1; local 948 skipZoneIDPrefix(&zoneid); 949 uprv_strcpy(SEARCH_TZFILE_RESULT, zoneid); [all...] |
/external/icu4c/tools/tzcode/ |
tz2icu.cpp | [all...] |