Home | History | Annotate | Download | only in cintltst

Lines Matching refs:u_strchr

258     log_verbose("Testing u_strchr() and u_memchr()\n");
263 UChar *findPtr = u_strchr(dataTable[i][j], 0x005F);
269 log_err("u_strchr can't find '_' in the string\n");
277 findPtr = u_strchr(dataTable[i][j], 0);
279 log_err("u_strchr can't find NULL in the string\n");
719 first!=u_strchr(s, nul) ||
751 first!=u_strchr(s+1, a) ||
775 NULL!=u_strchr(s+1, b) ||
810 first!=u_strchr(s+1, lead) ||
835 first!=u_strchr(s+1, trail) ||
1015 /*Testing u_strchr()*/
1016 log_verbose("Testing u_strchr\n");
1025 result=u_strchr(temp, (UChar)0x62);
1027 log_err("There is an error in u_strchr() Expected match at position 1 Got %ld (pointer 0x%lx)\n", result-temp, result);