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

  /external/chromium_org/third_party/icu/source/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/chromium_org/third_party/icu/source/i18n/
bms.cpp 28 U_CAPI UCD * U_EXPORT2
31 return STATIC_CAST(UCD *, CollData::open(coll, *status));
35 ucd_close(UCD *ucd)
37 CollData *data = STATIC_CAST(CollData *, ucd);
43 ucd_getCollator(UCD *ucd)
45 CollData *data = STATIC_CAST(CollData *, ucd);
69 bms_open(UCD *ucd,
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
ssearch.cpp 438 UCD *ucd = NULL; local
446 ucd = ucd_open(coll, &status);
453 bms = bms_open(ucd, pattern, plen, target, targetLen, &status);
473 ucd_close(ucd);
634 UCD *ucd = ucd_open(collator, &status); local
635 BMS *bms = bms_open(ucd, pattern.getBuffer(), pattern.length(), target.getBuffer(), target.length(), &status);
640 ucd_close(ucd);
664 ucd_close(ucd);
    [all...]

Completed in 150 milliseconds