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

  /external/icu4c/i18n/unicode/
bms.h 22 * A <code>UCD</code> object holds the Collator-specific data needed to
26 * <code>UCD</code> objects are quite expensive to compute. Because
32 * <code>ucd_flushCCache</code>. If you no longer need any <code>UCD</code>
35 typedef void UCD;
38 * Open a <code>UCD</code> object.
43 * @return the <code>UCD</code> object. You must call
51 U_CAPI UCD * U_EXPORT2
55 * Release a <code>UCD</code> object.
57 * @param ucd - the object
62 ucd_close(UCD *ucd)
    [all...]
  /external/icu4c/i18n/
bms.cpp 26 U_CAPI UCD * U_EXPORT2
29 return STATIC_CAST(UCD *, CollData::open(coll, *status));
33 ucd_close(UCD *ucd)
35 CollData *data = STATIC_CAST(CollData *, ucd);
41 ucd_getCollator(UCD *ucd)
43 CollData *data = STATIC_CAST(CollData *, ucd);
67 bms_open(UCD *ucd,
    [all...]
  /external/icu4c/test/intltest/
ssearch.cpp 445 UCD *ucd = NULL; local
453 ucd = ucd_open(coll, &status);
460 bms = bms_open(ucd, pattern, plen, target, targetLen, &status);
480 ucd_close(ucd);
641 UCD *ucd = ucd_open(collator, &status); local
642 BMS *bms = bms_open(ucd, pattern.getBuffer(), pattern.length(), target.getBuffer(), target.length(), &status);
647 ucd_close(ucd);
671 ucd_close(ucd);
    [all...]

Completed in 18 milliseconds