OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:icuid
(Results
1 - 5
of
5
) sorted by null
/external/icu/icu4c/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
293
UnicodeString
icuid
;
local
295
zone.getID(
icuid
);
296
if (! uprv_getWindowsTimeZoneInfo(tzi,
icuid
.getBuffer(),
icuid
.length())) {
298
int32_t ec = TimeZone::countEquivalentIDs(
icuid
);
301
UnicodeString equiv = TimeZone::getEquivalentID(
icuid
, z);
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
LocaleNameTest.java
36
StringBuffer
icuid
= new StringBuffer();
local
49
icuid
.setLength(0);
50
icuid
.append(forLocale.getLanguage());
54
icuid
.append("_");
55
icuid
.append(country);
59
icuid
.append("_");
61
icuid
.append("_");
62
icuid
.append(variant);
64
ULocale forULocale = new ULocale(
icuid
.toString());
/external/icu/icu4c/source/common/
wintz.c
276
char*
icuid
= NULL;
local
423
* Copy the timezone ID to
icuid
to be returned.
427
icuid
= (char*)uprv_calloc(len + 1, sizeof(char));
428
if (
icuid
!= NULL) {
429
uprv_strcpy(
icuid
, tmpid);
435
return
icuid
;
Completed in 825 milliseconds