Home | History | Annotate | Download | only in cintltst

Lines Matching refs:u_strchr32

277         findPtr = u_strchr32(dataTable[i][j], 0x005F);
279 log_err("u_strchr32 can't find '_' in the string\n");
287 findPtr = u_strchr32(dataTable[i][j], 0);
289 log_err("u_strchr32 can't find NULL in the string\n");
321 * test that u_strchr32()
332 if(u_strchr32(s, 0xd841)!=(s+3) || u_strchr32(s, 0xdc02)!=(s+5)) {
333 log_err("error: u_strchr32(surrogate) finds a partial supplementary code point\n");
725 first!=u_strchr32(s, nul) ||
757 first!=u_strchr32(s+1, a) ||
781 NULL!=u_strchr32(s+1, b) ||
804 NULL!=u_strchr32(s+1, ill) ||
816 first!=u_strchr32(s+1, lead) ||
841 first!=u_strchr32(s+1, trail) ||
866 first!=u_strchr32(s+1, supp) ||
901 NULL!=u_strchr32(s+1, supp2) ||
1052 /*Testing u_strchr32*/
1053 log_verbose("Testing u_strchr32\n");
1054 result=u_strchr32(temp, (UChar32)0x62);
1056 log_err("There is an error in u_strchr32() Expected match at position 1 Got %ld (pointer 0x%lx)\n", result-temp, result);
1058 result=u_strchr32(temp, (UChar32)0xfb);
1060 log_err("There is an error in u_strchr32() Expected NULL \"not found\" Got non-NULL \"found\" result\n");
1062 result=u_strchr32(temp, (UChar32)0x20402);
1064 log_err("There is an error in u_strchr32() Expected match at position 5 Got %ld (pointer 0x%lx)\n", result-temp, result);