Home | History | Annotate | Download | only in cintltst

Lines Matching refs:u_memchr32

292         findPtr = u_memchr32(dataTable[i][j], 0, dataSize);
294 log_err("u_memchr32 can't find NULL in the string\n");
304 findPtr = u_memchr32(dataTable[i][j], 0x005F, dataSize);
306 log_err("u_memchr32 can't find '_' in the string\n");
308 findPtr = u_memchr32(dataTable[i][j], 0xFFFD, dataSize);
330 if(u_memchr32(s, 0xd841, 9)!=(s+3) || u_memchr32(s, 0xdc02, 9)!=(s+5)) {
331 log_err("error: u_memchr32(surrogate) finds a partial supplementary code point\n");
722 first!=u_memchr32(s, nul, UPRV_LENGTHOF(s)) ||
754 first!=u_memchr32(s+1, a, 9) ||
778 NULL!=u_memchr32(s+1, b, 9) ||
800 NULL!=u_memchr32(s+1, ill, 9) ||
813 first!=u_memchr32(s+1, lead, 9) ||
838 first!=u_memchr32(s+1, trail, 9) ||
862 first!=u_memchr32(s+1, supp, 9) ||
881 NULL!=u_memchr32(s+1, supp, 1) ||
897 NULL!=u_memchr32(s+1, supp2, 9) ||
1063 result=u_memchr32(temp, (UChar32)0x20402, 7);
1065 log_err("There is an error in u_memchr32() Expected match at position 5 Got %ld (pointer 0x%lx)\n", result-temp, result);
1067 result=u_memchr32(temp, (UChar32)0x20402, 6);
1069 log_err("There is an error in u_memchr32() Expected no match Got %ld (pointer 0x%lx)\n", result-temp, result);
1071 result=u_memchr32(temp, (UChar32)0x20402, 1);
1073 log_err("There is an error in u_memchr32() Expected no match Got %ld (pointer 0x%lx)\n", result-temp, result);
1075 result=u_memchr32(temp, (UChar32)0xfc00, 8);
1077 log_err("There is an error in u_memchr32() Expected match at position 7 Got %ld (pointer 0x%lx)\n", result-temp, result);