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

/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Duregion.cpp12 #include "unicode/uregion.h"
41 uregion_areEqual(const URegion* uregion, const URegion* otherRegion) argument
43 return ( (void*)uregion == (void*)otherRegion );
48 uregion_getContainingRegion(const URegion* uregion) argument
50 return (URegion*)((Region*)uregion)->getContainingRegion();
55 uregion_getContainingRegionOfType(const URegion* uregion, URegionType type) argument
57 return (URegion*)((Region*)uregion)->getContainingRegion(type);
62 uregion_getContainedRegions(const URegion* uregion, UErrorCode *status) argument
64 return uenum_openFromStringEnumeration( ((Region*)uregion)->getContainedRegions(), status);
69 uregion_getContainedRegionsOfType(const URegion* uregion, URegionTyp argument
76 uregion_contains(const URegion* uregion, const URegion* otherRegion) argument
83 uregion_getPreferredValues(const URegion* uregion, UErrorCode *status) argument
90 uregion_getRegionCode(const URegion* uregion) argument
97 uregion_getNumericCode(const URegion* uregion) argument
104 uregion_getType(const URegion* uregion) argument
[all...]
H A Dtimezone.cpp1121 const UChar *uregion = NULL; local
1125 uregion = getRegion(id);
1127 if (uregion == NULL) {
1131 resultLen = u_strlen(uregion);
1133 u_UCharsToChars(uregion, region, uprv_min(resultLen, capacity));
/macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/
H A Duregion.h154 * Returns true if the specified uregion is equal to the specified otherRegion.
158 uregion_areEqual(const URegion* uregion, const URegion* otherRegion);
161 * Returns a pointer to the URegion that contains the specified uregion. Returns NULL if the
162 * specified uregion is code "001" (World) or "ZZ" (Unknown region). For example, calling
167 uregion_getContainingRegion(const URegion* uregion);
170 * Return a pointer to the URegion that geographically contains this uregion and matches the
174 * For example, calling this method with uregion "IT" (Italy) for type URGN_CONTINENT returns the
179 uregion_getContainingRegionOfType(const URegion* uregion, URegionType type);
183 * of the specified uregion in the region hierarchy. These returned regions could be either macro
185 * CLDR. This API returns NULL if this uregion does
[all...]

Completed in 207 milliseconds