Home | History | Annotate | Download | only in cintltst

Lines Matching full:u_strchr

263     log_verbose("Testing u_strchr() and u_memchr()\n");
268 UChar *findPtr = u_strchr(dataTable[i][j], 0x005F);
274 log_err("u_strchr can't find '_' in the string\n");
282 findPtr = u_strchr(dataTable[i][j], 0);
284 log_err("u_strchr can't find NULL in the string\n");
724 first!=u_strchr(s, nul) ||
756 first!=u_strchr(s+1, a) ||
780 NULL!=u_strchr(s+1, b) ||
815 first!=u_strchr(s+1, lead) ||
840 first!=u_strchr(s+1, trail) ||
1020 /*Testing u_strchr()*/
1021 log_verbose("Testing u_strchr\n");
1030 result=u_strchr(temp, (UChar)0x62);
1032 log_err("There is an error in u_strchr() Expected match at position 1 Got %ld (pointer 0x%lx)\n", result-temp, result);
1752 static const UChar text[]={ /* must contain <00C5 0327> see u_strchr() below */
1770 middle=(int32_t)(u_strchr(text, 0x327)-text); /* see comment at text[] */