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

  /external/icu/icu4c/source/test/cintltst/
custrtst.c 629 log_verbose("Testing u_strspn()");
631 if (u_strspn(testString, a) != 1) {
632 log_err("u_strspn couldn't skip first letter a.\n");
634 if (u_strspn(testString, ab) != 2) {
635 log_err("u_strspn couldn't skip a or b.\n");
637 if (u_strspn(testString, ba) != 2) {
638 log_err("u_strspn couldn't skip a or b.\n");
640 if (u_strspn(testString, f) != 0) {
641 log_err("u_strspn didn't return 0 for \"f\".\n");
643 if (u_strspn(testString, dc) != 0)
    [all...]
  /external/icu/icu4c/source/common/unicode/
ustring.h 365 * @see u_strspn
385 u_strspn(const UChar *string, const UChar *matchSet);
    [all...]
urename.h 386 #define u_strspn U_ICU_ENTRY_POINT_RENAME(u_strspn) macro
    [all...]
  /external/icu/icu4c/source/common/
ustring.cpp 565 u_strspn(const UChar *string, const UChar *matchSet) function
601 nonDelimIdx = u_strspn(tokSource, delim);
    [all...]

Completed in 222 milliseconds