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

  /external/chromium_org/third_party/icu/source/test/cintltst/
custrtst.c 263 log_verbose("Testing u_strchr() and u_memchr()\n");
292 findPtr = u_memchr(dataTable[i][j], 0, dataSize);
294 log_err("u_memchr can't find NULL in the string\n");
304 findPtr = u_memchr(dataTable[i][j], 0x005F, dataSize);
306 log_err("u_memchr can't find '_' in the string\n");
726 first!=u_memchr(s, nul, LENGTHOF(s)) ||
758 first!=u_memchr(s+1, a, 9) ||
782 NULL!=u_memchr(s+1, b, 9) ||
817 first!=u_memchr(s+1, lead, 9) ||
842 first!=u_memchr(s+1, trail, 9) |
    [all...]
  /external/icu/icu4c/source/test/cintltst/
custrtst.c 259 log_verbose("Testing u_strchr() and u_memchr()\n");
288 findPtr = u_memchr(dataTable[i][j], 0, dataSize);
290 log_err("u_memchr can't find NULL in the string\n");
300 findPtr = u_memchr(dataTable[i][j], 0x005F, dataSize);
302 log_err("u_memchr can't find '_' in the string\n");
722 first!=u_memchr(s, nul, LENGTHOF(s)) ||
754 first!=u_memchr(s+1, a, 9) ||
778 NULL!=u_memchr(s+1, b, 9) ||
813 first!=u_memchr(s+1, lead, 9) ||
838 first!=u_memchr(s+1, trail, 9) |
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ustring.c 119 return length<0 ? u_strchr(s, cs) : u_memchr(s, cs, length);
237 u_memchr(const UChar *s, UChar c, int32_t count) { function
259 return u_memchr(s, (UChar)c, count);
    [all...]
unistr.cpp 931 const UChar *match = u_memchr(array + start, c, length);
    [all...]
  /external/icu/icu4c/source/common/
ustring.cpp 120 return length<0 ? u_strchr(s, cs) : u_memchr(s, cs, length);
238 u_memchr(const UChar *s, UChar c, int32_t count) { function
260 return u_memchr(s, (UChar)c, count);
    [all...]
unistr.cpp 973 const UChar *match = u_memchr(array + start, c, length);
    [all...]
  /external/icu/icu4c/source/tools/gendict/
gendict.cpp 258 const UChar *comment = u_memchr(line, 0x23, lineLength); // '#'
  /external/icu/icu4c/source/common/unicode/
urename.h 314 #define u_memchr U_ICU_ENTRY_POINT_RENAME(u_memchr) macro
    [all...]
ustring.h 224 * @see u_memchr
829 u_memchr(const UChar *s, UChar c, int32_t count);
845 * @see u_memchr
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol_tok.cpp 639 const UChar* end = u_memchr(src->current, 0x005d, src->end - src->current);
647 space = u_memchr(current, 0x0020, end - current);
675 space = u_memchr(current, 0x0020, end - current);
806 src->current = u_memchr(src->current, 0x005d, (int32_t)(src->end-src->current));
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
urename.h 326 #define u_memchr U_ICU_ENTRY_POINT_RENAME(u_memchr) macro
    [all...]
ustring.h 219 * @see u_memchr
824 u_memchr(const UChar *s, UChar c, int32_t count);
840 * @see u_memchr
    [all...]
  /external/icu/icu4c/source/test/intltest/
collationtest.cpp     [all...]

Completed in 4702 milliseconds