Searched refs:uregion (Results 1 - 4 of 4) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Duregion.cpp12 #include "unicode/uregion.h"
43 uregion_areEqual(const URegion* uregion, const URegion* otherRegion) argument
45 return ( (void*)uregion == (void*)otherRegion );
50 uregion_getContainingRegion(const URegion* uregion) argument
52 return (URegion*)((Region*)uregion)->getContainingRegion();
57 uregion_getContainingRegionOfType(const URegion* uregion, URegionType type) argument
59 return (URegion*)((Region*)uregion)->getContainingRegion(type);
64 uregion_getContainedRegions(const URegion* uregion, UErrorCode *status) argument
66 StringEnumeration* strenum = ((Region*)uregion)->getContainedRegions(*status);
72 uregion_getContainedRegionsOfType(const URegion* uregion, URegionTyp argument
80 uregion_contains(const URegion* uregion, const URegion* otherRegion) argument
87 uregion_getPreferredValues(const URegion* uregion, UErrorCode *status) argument
95 uregion_getRegionCode(const URegion* uregion) argument
102 uregion_getNumericCode(const URegion* uregion) argument
109 uregion_getType(const URegion* uregion) argument
[all...]
H A Dtimezone.cpp1143 const UChar *uregion = NULL; local
1147 uregion = getRegion(id);
1149 if (uregion == NULL) {
1153 resultLen = u_strlen(uregion);
1155 u_UCharsToChars(uregion, region, uprv_min(resultLen, capacity));
H A Dtznames_impl.cpp1531 const UChar *uregion = ures_getStringByIndex(regionsRes, i, &len, &status); local
1541 u_UCharsToChars(uregion, *pRegion, len);
/external/icu/icu4c/source/i18n/unicode/
H A Duregion.h152 * Returns true if the specified uregion is equal to the specified otherRegion.
156 uregion_areEqual(const URegion* uregion, const URegion* otherRegion);
159 * Returns a pointer to the URegion that contains the specified uregion. Returns NULL if the
160 * specified uregion is code "001" (World) or "ZZ" (Unknown region). For example, calling
165 uregion_getContainingRegion(const URegion* uregion);
168 * Return a pointer to the URegion that geographically contains this uregion and matches the
172 * For example, calling this method with uregion "IT" (Italy) for type URGN_CONTINENT returns the
177 uregion_getContainingRegionOfType(const URegion* uregion, URegionType type);
181 * of the specified uregion in the region hierarchy. These returned regions could be either macro
183 * CLDR. This API returns NULL if this uregion does
[all...]

Completed in 158 milliseconds