OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tmpsts
(Results
1 - 2
of
2
) sorted by null
/external/icu4c/i18n/
tzgnames.cpp
367
UErrorCode
tmpsts
= U_ZERO_ERROR; // OK with fallback warning..
local
368
UResourceBundle *zoneStrings = ures_open(U_ICUDATA_ZONE, locale.getName(), &
tmpsts
);
369
zoneStrings = ures_getByKeyWithFallback(zoneStrings, gZoneStrings, zoneStrings, &
tmpsts
);
371
if (U_SUCCESS(
tmpsts
)) {
372
const UChar *regionPattern = ures_getStringByKeyWithFallback(zoneStrings, gRegionFormatTag, NULL, &
tmpsts
);
373
if (U_SUCCESS(
tmpsts
) && u_strlen(regionPattern) > 0) {
376
tmpsts
= U_ZERO_ERROR;
377
const UChar *fallbackRegionPattern = ures_getStringByKeyWithFallback(zoneStrings, gFallbackRegionFormatTag, NULL, &
tmpsts
);
378
if (U_SUCCESS(
tmpsts
) && u_strlen(fallbackRegionPattern) > 0) {
381
tmpsts
= U_ZERO_ERROR
[
all
...]
tznames_impl.cpp
893
UErrorCode
tmpsts
= U_ZERO_ERROR; // OK with fallback warning..
local
894
fZoneStrings = ures_open(U_ICUDATA_ZONE, locale.getName(), &
tmpsts
);
895
fZoneStrings = ures_getByKeyWithFallback(fZoneStrings, gZoneStrings, fZoneStrings, &
tmpsts
);
896
if (U_FAILURE(
tmpsts
)) {
897
status =
tmpsts
;
[
all
...]
Completed in 59 milliseconds