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

  /external/icu/icu4c/source/samples/break/
ubreak.c 100 boundary = ubrk_open(UBRK_SENTENCE, "en_us", stringToExamine,
103 printf("ubrk_open error: %s\n", u_errorName(status));
114 boundary = ubrk_open(UBRK_WORD, "en_us", stringToExamine,
  /external/icu/icu4c/source/test/cintltst/
cbiapts.c 167 /*test ubrk_open()*/
171 word = ubrk_open(UBRK_WORD, "en_US", text, u_strlen(text), &status);
176 log_err_status(status, "FAIL: Error in ubrk_open() for word breakiterator: %s\n", myErrorName(status));
182 sentence = ubrk_open(UBRK_SENTENCE, "en_US", text, u_strlen(text), &status);
184 log_err_status(status, "FAIL: Error in ubrk_open() for sentence breakiterator: %s\n", myErrorName(status));
191 line = ubrk_open(UBRK_LINE, "en_US", text, u_strlen(text), &status);
193 log_err("FAIL: Error in ubrk_open() for line breakiterator: %s\n", myErrorName(status));
200 character = ubrk_open(UBRK_CHARACTER, "en_US", text, u_strlen(text), &status);
202 log_err("FAIL: Error in ubrk_open() for character breakiterator: %s\n", myErrorName(status));
209 bogus = ubrk_open((UBreakIteratorType)5, "en_US", text, u_strlen(text), &status)
    [all...]
cstrcase.c 243 titleIterChars=ubrk_open(UBRK_CHARACTER, "", beforeTitle, UPRV_LENGTHOF(beforeTitle), &errorCode);
245 log_err_status(errorCode, "error: ubrk_open(UBRK_CHARACTER)->%s\n", u_errorName(errorCode));
347 titleIterWord=ubrk_open(UBRK_WORD, "", beforeTitle, UPRV_LENGTHOF(beforeTitle), &errorCode);
349 log_err_status(errorCode, "error: ubrk_open(UBRK_WORD)->%s\n", u_errorName(errorCode));
    [all...]
usrchtst.c 83 EN_WORDBREAKER_ = ubrk_open(UBRK_WORD, "en_US", NULL, 0, status);
84 EN_CHARACTERBREAKER_ = ubrk_open(UBRK_CHARACTER, "en_US", NULL, 0,
207 UBreakIterator *breakiter = ubrk_open(UBRK_WORD, "en_US",
    [all...]
cloctst.c     [all...]
  /external/icu/icu4c/source/test/perf/strsrchperf/
strsrchperf.cpp 33 UBreakIterator* brk = ubrk_open(UBRK_WORD, locale, src, srcLen, &status);
  /external/icu/icu4c/source/common/unicode/
ubrk.h 242 ubrk_open(UBreakIteratorType type,
260 * @see ubrk_open
urename.h 491 #define ubrk_open U_ICU_ENTRY_POINT_RENAME(ubrk_open) macro
    [all...]
  /external/icu/icu4c/source/common/
ubrk.cpp 29 // ubrk_open Create a canned type of break iterator based on type (word, line, etc.)
34 ubrk_open(UBreakIteratorType type, function
  /external/icu/icu4c/source/test/intltest/
ssearch.cpp     [all...]
strcase.cpp 557 iter.adoptInstead(ubrk_open((UBreakIteratorType)type, cLocaleID, NULL, 0, &status));
    [all...]
rbbitst.cpp     [all...]
  /external/icu/icu4c/source/i18n/
usearch.cpp     [all...]

Completed in 620 milliseconds