HomeSort by relevance Sort by last modified time
    Searched refs:URegion (Results 1 - 3 of 3) sorted by null

  /external/icu/icu4c/source/i18n/unicode/
uregion.h 16 * \brief C API: URegion (territory containment and mapping)
18 * URegion objects represent data associated with a particular Unicode Region Code, also known as a
23 * URegion objects can also provide mappings to and from additional codes. There are different types
52 * URegion objects are const/immutable, owned and maintained by ICU itself, so there are not functions
118 * Opaque URegion object for use in C programs.
121 struct URegion;
122 typedef struct URegion URegion; /**< @stable ICU 52 */
125 * Returns a pointer to a URegion for the specified region code: A 2-letter or 3-letter ISO 3166
132 U_STABLE const URegion* U_EXPORT
    [all...]
  /external/icu/icu4c/source/i18n/
uregion.cpp 12 #include "unicode/uregion.h"
20 U_CAPI const URegion* U_EXPORT2
23 return (URegion*)Region::getInstance(regionCode, *status);
27 U_CAPI const URegion* U_EXPORT2
30 return (URegion*)Region::getInstance(code, *status);
43 uregion_areEqual(const URegion* uregion, const URegion* otherRegion)
45 return ( (void*)uregion == (void*)otherRegion );
49 U_CAPI const URegion* U_EXPORT
    [all...]
  /external/icu/icu4c/source/test/cintltst/
uregiontest.c 5 /* C API TEST FOR UREGION */
17 #include "unicode/uregion.h"
363 const URegion *r = uregion_getRegionFromCode(rd->code, &status);
374 const URegion *ncRegion = uregion_getRegionFromNumericCode(e, &status);
390 const URegion *r = uregion_getRegionFromCode(rd->code, &status);
400 const URegion *cr = uregion_getRegionFromCode(crID, &status);
401 const URegion *containingRegion = (cr)? uregion_getContainingRegion(cr) : NULL;
419 const URegion *r = uregion_getRegionFromCode(rd->code, &status);
429 const URegion *cr = uregion_getRegionFromCode(crID, &status);
430 const URegion *containingRegion = (cr)? uregion_getContainingRegionOfType(cr, URGN_CONTINENT) : NULL
    [all...]

Completed in 1550 milliseconds